﻿.magical-link {
    text-decoration: none;
    font-weight: bold;
    background: linear-gradient(90deg, #FF4081, #FF9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Link-style button for sign out, for example */
.link-style {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: #000000;
    text-decoration: underline;
    cursor: pointer;
}

.link-style:hover {
    color: #233411;
}

.profile-image {
    max-height: 7em;
}

.btn-snap {
    position: relative;
}

.btn-snap-snap {
    margin-top: -75px;
}

.btn-snap-unsnap {
    margin-top: -34px;
}

.dashed {
    border-top: 2px dashed;
    z-index: 1;
}

.snap-up {
    border-top: none !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.snap-down {
    border-bottom: none !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.card.deleted {
    pointer-events: none;
    opacity: 0.5;
    filter: blur(2px);
}

.card {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.card.moving-up {
    transform: translateY(-100px);
    opacity: 0.8;
}

.card.moving-down {
    transform: translateY(100px);
    opacity: 0.8;
}

.floating-header {
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px;
    /*background-color: white;*/ /* Optional: helps with readability */
    z-index: 1000; /* Ensures it stays above other content */
}

.img-badge {
    width: .85rem;
    height: .85rem;
    padding-bottom: .3rem;
}

/* Put this in your CSS bundle or a <style> block */
.border-dashed {
    border-style: dashed !important;
}

.dropzone {
    border: 2px dashed var(--bs-border-color);
    border-radius: .5rem;
    padding: 1.25rem;
    text-align: center;
    color: var(--bs-secondary-color);
    background: var(--bs-body-bg);
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out;
    cursor: pointer;
}

    .dropzone.dragover {
        background: rgba(13,110,253,.05); /* bs-primary with transparency */
        border-color: var(--bs-primary);
        color: var(--bs-primary);
    }

    .dropzone .upload-cta {
        color: var(--bs-primary);
        text-decoration: underline;
        cursor: pointer;
    }

    .dropzone .help {
        font-size: .875rem;
        color: var(--bs-secondary-color);
    }

.preview-img {
    max-width: 100%;
    height: auto;
    border-radius: .25rem;
    margin-top: .5rem;
}