/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-q8szo96s7k],
.components-reconnect-repeated-attempt-visible[b-q8szo96s7k],
.components-reconnect-failed-visible[b-q8szo96s7k],
.components-pause-visible[b-q8szo96s7k],
.components-resume-failed-visible[b-q8szo96s7k],
.components-rejoining-animation[b-q8szo96s7k] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-q8szo96s7k],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-q8szo96s7k],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-q8szo96s7k],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-q8szo96s7k],
#components-reconnect-modal.components-reconnect-retrying[b-q8szo96s7k],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-q8szo96s7k],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-q8szo96s7k],
#components-reconnect-modal.components-reconnect-failed[b-q8szo96s7k],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-q8szo96s7k] {
    display: block;
}


#components-reconnect-modal[b-q8szo96s7k] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-q8szo96s7k 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-q8szo96s7k 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-q8szo96s7k 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-q8szo96s7k]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-q8szo96s7k 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-q8szo96s7k {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-q8szo96s7k {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-q8szo96s7k {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-q8szo96s7k] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-q8szo96s7k] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-q8szo96s7k] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-q8szo96s7k] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-q8szo96s7k] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-q8szo96s7k] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-q8szo96s7k] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-q8szo96s7k 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-q8szo96s7k] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-q8szo96s7k {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Admin/Leads/Index.razor.rz.scp.css */
.leads-sel-bar[b-twelu88cmy] {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #1e293b;
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    white-space: nowrap;
    z-index: 1000;
    transition: opacity .18s ease, transform .18s ease;
}

.leads-sel-bar.hidden[b-twelu88cmy] {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
}

.leads-sel-bar-count[b-twelu88cmy] {
    font-size: 12px;
    color: #94a3b8;
    padding-right: 10px;
    border-right: 1px solid rgba(255,255,255,.15);
    margin-right: 2px;
}

.leads-sel-bar-divider[b-twelu88cmy] {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,.15);
    margin: 0 2px;
    flex-shrink: 0;
}

.leads-sel-bar-swatch[b-twelu88cmy] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.3);
    cursor: pointer;
    flex-shrink: 0;
    transition: transform .12s, border-color .12s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.leads-sel-bar-swatch:hover[b-twelu88cmy] {
    transform: scale(1.25);
    border-color: white;
}
/* /Components/Pages/Admin/RealEstates/RealEstateBasicSection.razor.rz.scp.css */
.re-headline-row[b-3ur4ajw013] {
    padding: 1.25rem 0 1.5rem;
    border-left: 3px solid #6366f1;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.re-headline-label[b-3ur4ajw013] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6366f1;
    margin-bottom: 0.4rem;
}

.re-basic-grid[b-3ur4ajw013] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.re-col[b-3ur4ajw013] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.re-col-title[b-3ur4ajw013] {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-slate-300, #cbd5e1);
    margin: 0 0 0.25rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--color-slate-700, #334155);
}

.re-col-2grid[b-3ur4ajw013] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.re-agent-readonly[b-3ur4ajw013] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.re-field-label[b-3ur4ajw013] {
    font-size: 0.72rem;
    color: var(--color-slate-500, #64748b);
}

.re-agent-name[b-3ur4ajw013] {
    font-size: 0.9rem;
    color: var(--color-slate-200, #e2e8f0);
    font-weight: 500;
}
/* /Components/Pages/Admin/RealEstates/RealEstateContractSection.razor.rz.scp.css */
.re-contract-grid[b-diw3lkssbd] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.re-contract-dimmed[b-diw3lkssbd] {
    opacity: 0.45;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
/* /Components/Pages/Admin/RealEstates/RealEstateDescriptionSection.razor.rz.scp.css */
.re-description-col[b-7jlc5l1h2t] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 860px;
}

.re-preview-card[b-7jlc5l1h2t] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #6366f1;
    border-radius: var(--radius-md, 8px);
    padding: 0.75rem 1rem;
}

.re-preview-label[b-7jlc5l1h2t] {
    font-size: 0.65rem;
    color: #6366f1;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.4rem;
}

.re-preview-html[b-7jlc5l1h2t] {
    font-size: 0.82rem;
    color: #334155;
    line-height: 1.55;
}
/* /Components/Pages/Admin/RealEstates/RealEstateFormHeader.razor.rz.scp.css */
.re-form-header[b-p0aqzrnuhe] {
    background: var(--color-slate-700, #334155);
    border-bottom: 1px solid var(--color-slate-600, #475569);
    position: sticky;
    top: 0;
    z-index: 100;
}

.re-form-topbar[b-p0aqzrnuhe] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    flex-wrap: wrap;
}

.re-form-public-id[b-p0aqzrnuhe] {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    white-space: nowrap;
}

.re-form-public-id.set[b-p0aqzrnuhe] {
    background: #312e81;
    color: #a5b4fc;
}

.re-form-public-id.new[b-p0aqzrnuhe] {
    border: 1px dashed var(--color-slate-600, #475569);
    color: var(--color-slate-500, #64748b);
}

.re-form-title[b-p0aqzrnuhe] {
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-slate-200, #e2e8f0);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.re-status-badge[b-p0aqzrnuhe] {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 99px;
    white-space: nowrap;
}

.re-status-badge.active[b-p0aqzrnuhe] {
    background: #14532d;
    color: #86efac;
}

.re-status-badge.inactive[b-p0aqzrnuhe] {
    background: var(--color-slate-700, #334155);
    color: var(--color-slate-400, #94a3b8);
}

.re-form-toggles[b-p0aqzrnuhe] {
    display: flex;
    gap: 1.5rem;
    padding: 0.4rem 1.5rem;
    flex-wrap: wrap;
}

/* /Components/Pages/Admin/RealEstates/RealEstateFormNav.razor.rz.scp.css */
.re-form-nav[b-88udh9kkhg] {
    width: 160px;
    min-width: 160px;
    background: var(--color-slate-750, #253347);
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border-right: 1px solid var(--color-slate-600, #475569);
}

.re-nav-label[b-88udh9kkhg] {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-slate-500, #64748b);
    padding: 0 0.4rem;
    margin-bottom: 0.25rem;
}

.re-nav-item[b-88udh9kkhg] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.5rem;
    border-radius: 5px;
    background: transparent;
    border: none;
    color: var(--color-slate-400, #94a3b8);
    font-size: 0.8rem;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background 0.12s;
}

.re-nav-item:hover:not(:disabled)[b-88udh9kkhg] {
    background: var(--color-slate-700, #334155);
}

.re-nav-item.active[b-88udh9kkhg] {
    background: #312e81;
    color: #a5b4fc;
    font-weight: 600;
}

.re-nav-item:disabled[b-88udh9kkhg] {
    color: var(--color-slate-600, #475569);
    cursor: not-allowed;
}

.re-nav-dot[b-88udh9kkhg] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.re-nav-dot.indigo[b-88udh9kkhg] { background: #6366f1; }
.re-nav-dot.green[b-88udh9kkhg]  { background: #22c55e; }
.re-nav-dot.red[b-88udh9kkhg]    { background: #f87171; }
.re-nav-dot.grey[b-88udh9kkhg]   { background: var(--color-slate-600, #475569); }

.re-nav-lock[b-88udh9kkhg] {
    font-size: 0.7rem;
    opacity: 0.5;
}
/* /Components/Pages/Admin/RealEstates/RealEstateFormPage.razor.rz.scp.css */
.re-form-shell[b-fnmw5zrfzr] {
    display: flex;
    flex-direction: column;
    /* explicit viewport height so the flex chain is defined and only re-form-content scrolls */
    height: calc(100vh - 64px);
    /* escape AdminLayout's 1.5rem 2rem content padding so the form fills edge-to-edge */
    margin: -1.5rem -2rem;
    width: calc(100% + 4rem);
}

.re-form-body[b-fnmw5zrfzr] {
    display: flex;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.re-form-content[b-fnmw5zrfzr] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem;
    padding-bottom: 80px;
}
/* /Components/Pages/Admin/RealEstates/RealEstateFormSaveBar.razor.rz.scp.css */
.re-save-bar[b-vlwmqraram] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-slate-800, #1e293b);
    border-top: 1px solid var(--color-slate-700, #334155);
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    z-index: 200;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.re-save-dirty[b-vlwmqraram] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--color-slate-400, #94a3b8);
    margin-right: auto;
    opacity: 0;
    transition: opacity 0.2s;
}

.re-save-dirty.visible[b-vlwmqraram] {
    opacity: 1;
}

.re-save-dot[b-vlwmqraram] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f59e0b;
    flex-shrink: 0;
}

.re-save-actions[b-vlwmqraram] {
    display: flex;
    gap: 0.6rem;
}
/* /Components/Pages/Admin/RealEstates/RealEstateLocationSection.razor.rz.scp.css */
.re-location-grid[b-3svpyqc5a5] {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    align-items: stretch;
}

.re-location-left[b-3svpyqc5a5] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.re-location-sep[b-3svpyqc5a5] {
    border-top: 1px solid var(--color-slate-200, #e2e8f0);
}

.re-location-right[b-3svpyqc5a5] {
    display: flex;
    flex-direction: column;
}

.re-map-container[b-3svpyqc5a5] {
    flex: 1;
    min-height: 300px;
    border-radius: var(--radius-md, 8px);
    border: 1px solid var(--color-slate-700, #334155);
    overflow: hidden;
}

.re-map-coords[b-3svpyqc5a5] {
    display: flex;
    gap: 1.5rem;
    font-size: 0.72rem;
    color: var(--color-slate-500, #64748b);
    margin-top: 0.35rem;
    margin-bottom: 0.5rem;
}
/* /Components/UI/RivalitasDocumentList.razor.rz.scp.css */
.doc-list[b-ia10u5twwm] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.doc-list__empty[b-ia10u5twwm] {
    color: var(--color-slate-500, #64748b);
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.doc-list__row[b-ia10u5twwm] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: 6px;
    background: var(--color-slate-50, #f8fafc);
    border: 1px solid var(--color-slate-200, #e2e8f0);
}

.doc-list__icon[b-ia10u5twwm] {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.doc-list__name[b-ia10u5twwm] {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.doc-list__badge[b-ia10u5twwm] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    background: var(--color-slate-200, #e2e8f0);
    color: var(--color-slate-700, #334155);
    flex-shrink: 0;
}

.doc-list__actions[b-ia10u5twwm] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.doc-list__open-link[b-ia10u5twwm] {
    font-size: 0.8rem;
    color: var(--color-indigo-600, #4f46e5);
    text-decoration: none;
    font-weight: 500;
}

.doc-list__open-link:hover[b-ia10u5twwm] {
    text-decoration: underline;
}

.doc-list__footer[b-ia10u5twwm] {
    margin-top: 0.5rem;
}
/* /Components/UI/RivalitasDocumentUploadDialog.razor.rz.scp.css */
.doc-upload-dialog[b-jhyi0eka5j] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 360px;
}


.doc-upload-label[b-jhyi0eka5j] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: 1px dashed var(--color-slate-400, #94a3b8);
    border-radius: 6px;
    cursor: pointer;
    color: var(--color-slate-600, #475569);
    font-size: 0.875rem;
    transition: border-color 0.15s, background 0.15s;
}

.doc-upload-label:hover[b-jhyi0eka5j] {
    border-color: var(--color-indigo-400, #818cf8);
    background: var(--color-slate-50, #f8fafc);
}

.doc-upload-label__filename[b-jhyi0eka5j] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 260px;
    color: var(--color-slate-800, #1e293b);
    font-weight: 500;
}

.doc-upload-dialog__file-row[b-jhyi0eka5j] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.doc-upload-dialog__error[b-jhyi0eka5j] {
    font-size: 0.8125rem;
    color: var(--color-red-600, #dc2626);
}
/* /Components/UI/RivalitasImageGallery.razor.rz.scp.css */
.gallery-shell[b-ya74frt2bl] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-toolbar[b-ya74frt2bl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}


.gallery-grid[b-ya74frt2bl] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.gallery-card[b-ya74frt2bl] {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    overflow: hidden;
    background: var(--color-slate-100);
    cursor: grab;
    border: 2px solid transparent;
    transition: border-color 0.15s;
}

.gallery-card:hover[b-ya74frt2bl] {
    border-color: var(--color-indigo-400);
}

.gallery-card-ghost[b-ya74frt2bl] {
    opacity: 0.4;
}

.gallery-card-uploading[b-ya74frt2bl] {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.gallery-card-thumb[b-ya74frt2bl] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.gallery-card-checkbox[b-ya74frt2bl] {
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 1;
    cursor: pointer;
}

.gallery-lightbox[b-ya74frt2bl] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
}

.lightbox-inner[b-ya74frt2bl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img[b-ya74frt2bl] {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-controls[b-ya74frt2bl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
