/* /Features/Events/Components/EventDetailsDialog.razor.rz.scp.css */
.event-details__no-image[b-iy3c7o328e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    background-color: var(--rz-surface-container-highest);
    border-radius: 8px;
    gap: 0.5rem;
}
/* /Features/Lightbox/Components/ImageLightbox.razor.rz.scp.css */
.lightbox-overlay[b-v0nv265k4n] {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn-b-v0nv265k4n 0.25s ease;
    cursor: pointer;
}

@keyframes lightboxFadeIn-b-v0nv265k4n {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-close-btn[b-v0nv265k4n] {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10001;
}

.lightbox-close-btn:hover[b-v0nv265k4n] {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close-btn .rzi[b-v0nv265k4n] {
    font-size: 1.5rem;
}

.lightbox-content[b-v0nv265k4n] {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    animation: lightboxScaleIn-b-v0nv265k4n 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxScaleIn-b-v0nv265k4n {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-content img[b-v0nv265k4n] {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-bottom-bar[b-v0nv265k4n] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    cursor: default;
}

.lightbox-name[b-v0nv265k4n] {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.lightbox-size[b-v0nv265k4n] {
    font-size: 0.8rem;
    opacity: 0.6;
    font-weight: 400;
}
/* /Features/MediaLibrary/Components/MediaLibraryDialog.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   MediaLibraryDialog — Premium CRM-style media library
   ═══════════════════════════════════════════════════════ */

/* ── Root Container ── */

.media-picker-root[b-3euf31cqma] {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

/* ── Toolbar ── */
.media-toolbar[b-3euf31cqma] {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--rz-border-color);
    margin-bottom: 0;
}

.toolbar-left[b-3euf31cqma] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.file-count-badge[b-3euf31cqma] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.4rem;
    border-radius: 999px;
    background: var(--rz-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}



/* ── Body: Grid + Detail ── */
.media-body[b-3euf31cqma] {
    flex: 1;
    display: flex;
    overflow: hidden;
    gap: 0;
    min-height: 0;
}

/* ── Grid Section ── */
.media-grid-section[b-3euf31cqma] {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem 0.5rem 0.75rem 0;
    min-width: 0;
}

/* Scrollbar styling */
.media-grid-section[b-3euf31cqma]::-webkit-scrollbar {
    width: 5px;
}
.media-grid-section[b-3euf31cqma]::-webkit-scrollbar-track {
    background: transparent;
}
.media-grid-section[b-3euf31cqma]::-webkit-scrollbar-thumb {
    background: var(--rz-base-300);
    border-radius: 10px;
}
.media-grid-section[b-3euf31cqma]::-webkit-scrollbar-thumb:hover {
    background: var(--rz-base-400);
}

.media-grid[b-3euf31cqma] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
    gap: 0.65rem;
    align-content: start;
}

/* ── Media Card ── */
.media-card[b-3euf31cqma] {
    border: 2px solid var(--rz-base-200);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--rz-base-background);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-card:hover[b-3euf31cqma] {
    border-color: var(--rz-primary-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.media-card.selected[b-3euf31cqma] {
    border-color: var(--rz-primary);
    box-shadow: 0 0 0 3px rgba(var(--rz-primary-rgb, 63, 81, 181), 0.15);
}

.card-thumb[b-3euf31cqma] {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--rz-base-100);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-thumb img[b-3euf31cqma] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-card:hover .card-thumb img[b-3euf31cqma] {
    transform: scale(1.05);
}



.card-file-icon[b-3euf31cqma] {
    font-size: 2.2rem;
    color: var(--rz-base-400);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-check-badge[b-3euf31cqma] {
    position: absolute;
    top: 0.3rem;
    right: 0.3rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--rz-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    animation: popIn-b-3euf31cqma 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-check-badge .rzi[b-3euf31cqma] {
    font-size: 0.85rem;
}

@keyframes popIn-b-3euf31cqma {
    0% { transform: scale(0); }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.card-info[b-3euf31cqma] {
    padding: 0.35rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.card-name[b-3euf31cqma] {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--rz-text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.card-meta[b-3euf31cqma] {
    font-size: 0.62rem;
    color: var(--rz-base-500);
}

/* ── Detail Panel ── */
.detail-panel[b-3euf31cqma] {
    width: 280px;
    flex-shrink: 0;
    border-left: 1px solid var(--rz-border-color);
    background: var(--rz-base-50, var(--rz-base-100));
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.detail-scroll[b-3euf31cqma] {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-scroll[b-3euf31cqma]::-webkit-scrollbar {
    width: 4px;
}
.detail-scroll[b-3euf31cqma]::-webkit-scrollbar-thumb {
    background: var(--rz-base-300);
    border-radius: 10px;
}

.detail-preview[b-3euf31cqma] {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    background: var(--rz-base-200);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.detail-preview img[b-3euf31cqma] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.detail-preview:hover img[b-3euf31cqma] {
    transform: scale(1.03);
}

.detail-zoom-hint[b-3euf31cqma] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.4rem 0.6rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: white;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.detail-zoom-hint .rzi[b-3euf31cqma] {
    font-size: 0.85rem;
}

.detail-preview:hover .detail-zoom-hint[b-3euf31cqma] {
    opacity: 1;
}

.detail-type-icon[b-3euf31cqma] {
    font-size: 3.5rem;
    color: var(--rz-base-400);
}

/* Detail Info */
.detail-info[b-3euf31cqma] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.detail-filename[b-3euf31cqma] {
    font-size: 0.82rem;
    font-weight: 600;
    margin: 0;
    word-break: break-all;
    line-height: 1.35;
    color: var(--rz-text-color);
}

.detail-meta-grid[b-3euf31cqma] {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 8px;
    border: 1px solid var(--rz-border-color);
    overflow: hidden;
}

.meta-row[b-3euf31cqma] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0.6rem;
    font-size: 0.72rem;
    border-bottom: 1px solid var(--rz-border-color);
}

.meta-row:last-child[b-3euf31cqma] {
    border-bottom: none;
}

.meta-label[b-3euf31cqma] {
    color: var(--rz-base-500);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.meta-label .rzi[b-3euf31cqma] {
    font-size: 0.85rem;
}

.meta-value[b-3euf31cqma] {
    font-weight: 500;
    color: var(--rz-text-color);
    text-align: right;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Detail Actions */
.detail-actions[b-3euf31cqma] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

/* Detail Placeholder */
.detail-placeholder[b-3euf31cqma] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.placeholder-icon[b-3euf31cqma] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--rz-base-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rz-base-400);
    margin-bottom: 0.25rem;
}

.placeholder-icon .rzi[b-3euf31cqma] {
    font-size: 1.5rem;
}

.placeholder-title[b-3euf31cqma] {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rz-text-color);
}

.placeholder-sub[b-3euf31cqma] {
    font-size: 0.7rem;
    color: var(--rz-base-500);
    line-height: 1.4;
}

/* ── Empty / Loading States ── */
.media-state-center[b-3euf31cqma] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 200px;
}

.empty-icon-wrapper[b-3euf31cqma] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rz-base-200), var(--rz-base-100));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rz-base-400);
    margin-bottom: 0.25rem;
}

.empty-icon-wrapper .rzi[b-3euf31cqma] {
    font-size: 1.75rem;
}

.state-title[b-3euf31cqma] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rz-text-color);
}

.state-text[b-3euf31cqma] {
    font-size: 0.75rem;
    color: var(--rz-base-500);
}

/* ── Footer ── */
.media-footer[b-3euf31cqma] {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0 0 0;
    border-top: 1px solid var(--rz-border-color);
    margin-top: 0;
}

.footer-left[b-3euf31cqma] {
    display: flex;
    align-items: center;
    min-width: 0;
}

.footer-right[b-3euf31cqma] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.selected-indicator[b-3euf31cqma] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: var(--rz-primary);
    font-weight: 500;
    padding: 0.3rem 0.6rem;
    background: rgba(var(--rz-primary-rgb, 63, 81, 181), 0.08);
    border-radius: 6px;
    max-width: 250px;
}

.selected-indicator .rzi[b-3euf31cqma] {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.selected-indicator span[b-3euf31cqma] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════
   Staging Overlay
   ═══════════════════════════════════════════════════════ */
.staging-backdrop[b-3euf31cqma] {
    position: absolute;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-3euf31cqma 0.25s ease;
    border-radius: 4px;
}

@keyframes fadeIn-b-3euf31cqma {
    from { opacity: 0; }
    to { opacity: 1; }
}

.staging-card[b-3euf31cqma] {
    display: flex;
    background: var(--rz-dialog-background-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 560px;
    width: 90%;
    animation: scaleIn-b-3euf31cqma 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn-b-3euf31cqma {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.staging-preview[b-3euf31cqma] {
    width: 220px;
    flex-shrink: 0;
    background: var(--rz-base-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.staging-preview img[b-3euf31cqma] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.staging-file-icon[b-3euf31cqma] {
    font-size: 3.5rem;
    color: var(--rz-base-400);
}

.staging-body[b-3euf31cqma] {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.staging-header[b-3euf31cqma] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--rz-text-color);
}

.staging-header-icon[b-3euf31cqma] {
    color: var(--rz-primary);
    font-size: 1.2rem;
}

.staging-field[b-3euf31cqma] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.staging-label[b-3euf31cqma] {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--rz-base-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.staging-meta[b-3euf31cqma] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.staging-meta-item[b-3euf31cqma] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: var(--rz-base-500);
}

.staging-meta-item .rzi[b-3euf31cqma] {
    font-size: 0.9rem;
}

.staging-actions[b-3euf31cqma] {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    justify-content: flex-end;
}

.staging-btn[b-3euf31cqma] {
    min-width: 90px;
}

/* /Features/Offers/Components/OfferDetailsDialog.razor.rz.scp.css */
/* Offer Card Preview Styles */

.preview-container[b-n0xuaiwn9a] {
    --space-1: 4px;
    --space-3: 12px;
    --space-7: 28px;
    --radius-xs: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --font-size-body-1: 17px;
    --font-size-caption: 11px;
    --font-size-button: 14px;
    --font-weight-regular: 400;
    --font-weight-medium: 600;
    --line-height-tight: 1.1;
    --line-height-normal: 1.4;
    --mmm-weiss: #ffffff;
    --mmm-schwarz: #000000;
    --mmm-red: #C20003;
    --transition-fast: 0.2s;
    
    padding: 1rem;
    background-color: var(--rz-grid-stripe-background-color);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
}

.offer-card[b-n0xuaiwn9a] {
    background-color: var(--card-color, var(--mmm-red));
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    max-width: 380px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.offer-card:hover[b-n0xuaiwn9a] {
    transform: translateY(-4px);
}

/* Header Section */
.offer-card__header[b-n0xuaiwn9a] {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Large Image Container */
.offer-card__image-container[b-n0xuaiwn9a] {
    width: calc(100% - var(--space-3) * 2);
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: var(--space-3) auto 0;
    position: relative;
    background-color: rgba(255, 255, 255, 0.18);
}

.offer-card__image-container img[b-n0xuaiwn9a],
.offer-card__image-container .authorized-image-placeholder[b-n0xuaiwn9a],
.offer-card__image-container[b-n0xuaiwn9a]  img,
.offer-card__image-container[b-n0xuaiwn9a]  .authorized-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Partner Logo Overlay */
.offer-card__logo-overlay[b-n0xuaiwn9a] {
    position: absolute;
    bottom: var(--space-3);
    left: var(--space-3);
    width: 58px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    box-shadow: none;
}

.offer-card__logo-overlay img[b-n0xuaiwn9a],
.offer-card__logo-overlay[b-n0xuaiwn9a]  img,
.offer-card__logo-overlay .authorized-image-placeholder[b-n0xuaiwn9a],
.offer-card__logo-overlay[b-n0xuaiwn9a]  .authorized-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
}

/* Favorite Button Overlay */
.offer-card__favorite-overlay[b-n0xuaiwn9a] {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Content Section */
.offer-card__content[b-n0xuaiwn9a] {
    padding: var(--space-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.offer-card__title[b-n0xuaiwn9a] {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: var(--mmm-schwarz);
    margin: var(--space-3) 0 var(--space-1);
    letter-spacing: -0.5px;
}

/* Validity Text */
.offer-card__validity[b-n0xuaiwn9a] {
    font-size: 18px;
    font-weight: 500;
    color: var(--mmm-schwarz);
    opacity: 0.8;
    margin: 0 0 var(--space-3);
}

/* CTA Button */
.offer-card__cta[b-n0xuaiwn9a] {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: var(--space-3);
}

.offer-card__cta-button[b-n0xuaiwn9a] {
    display: flex;
    padding: 14px 40px;
    justify-content: center;
    align-items: center;
    background-color: var(--mmm-schwarz);
    color: var(--mmm-weiss);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: opacity var(--transition-fast), transform 0.2s;
}

.offer-card__cta-button:hover[b-n0xuaiwn9a] {
    opacity: 0.9;
    transform: scale(1.02);
}

.offer-card__cta-button:active[b-n0xuaiwn9a] {
    transform: scale(0.98);
}
/* /Features/Partners/Components/PartnerFormDialog.razor.rz.scp.css */
.partner-dialog-wrapper[b-7z3fpqzwo9] {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: calc(90dvh - var(--rz-dialog-title-line-height) - 1.5rem);
    overflow: hidden;
}

.partner-dialog-content[b-7z3fpqzwo9] {
    flex: 1;
    min-height: 0;
    overflow: hidden; /* Prevent dialog-level scrolling */
    display: flex;
}

/* Make RadzenTabs take full height and use flex to fill it */
[b-7z3fpqzwo9] .rz-tabview {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: auto;
    flex: 1;
    min-height: 0;
}

[b-7z3fpqzwo9] .rz-tabview-panels {
    flex: 1;
    min-height: 0;
}

[b-7z3fpqzwo9] .rz-tabview-panel {
    height: 100%;
    min-height: 0;
    overflow: hidden;
    padding: 0 !important;
}

/* Ensure the form inside tabs also fills the height */
[b-7z3fpqzwo9] .rz-tabview-panel > form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.partner-dialog-footer[b-7z3fpqzwo9] {
    flex-shrink: 0;
    border-top: 1px solid var(--rz-border-color);
    background: var(--rz-dialog-background-color, white);
}

.partner-form-container[b-7z3fpqzwo9] {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding: 1rem;
    min-height: 0; /* Remove fixed min-height to allow internal scroll */
}

.form-body[b-7z3fpqzwo9] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 1.5rem; /* Extra space for the scrollbar */
    padding-bottom: 1rem;
    min-height: 0; /* Important for flex-scroll to work */
}

.form-textarea[b-7z3fpqzwo9] {
    width: 100%;
    height: 100px;
}


.error-list[b-7z3fpqzwo9] {
    list-style: none;
}

.input-flex[b-7z3fpqzwo9] {
    flex: 1;
}


[b-7z3fpqzwo9] .partner-modal-content {
    overflow: hidden;   
}


/* /Features/Posts/Components/PostDetailsDialog.razor.rz.scp.css */
.post-preview-shell[b-fcix4fb154] {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0.75rem;
    background: #f3f4f6;
    border-radius: 8px;
    overflow: auto;
}

.post-preview[b-fcix4fb154] {
    width: min(100%, 430px);
    padding: 24px;
    background: #ffffff;
    color: #050505;
    font-family: Arial, Helvetica, sans-serif;
    overflow-y: auto;
}

.post-preview[b-fcix4fb154]  .post-preview__image,
.post-preview__image-placeholder[b-fcix4fb154] {
    display: block;
    width: 100%;
    aspect-ratio: 1.78;
    object-fit: cover;
    border-radius: 20px;
    background: #e5e7eb;
}

.post-preview__image-placeholder[b-fcix4fb154] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b8f98;
}

.post-preview[b-fcix4fb154]  .post-preview__image--cover,
.post-preview__image--cover[b-fcix4fb154] {
    margin-bottom: 24px;
}

.post-preview[b-fcix4fb154]  .post-preview__image--inline {
    margin: 24px 0;
}

.post-preview__meta[b-fcix4fb154] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.35;
    color: #050505;
}

.post-preview__divider[b-fcix4fb154] {
    width: 1px;
    height: 22px;
    background: #050505;
}

.post-preview__title[b-fcix4fb154] {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 0;
}

.post-preview__lead[b-fcix4fb154],
.post-preview__body[b-fcix4fb154] {
    margin: 0;
    font-size: 23px;
    line-height: 1.28;
    letter-spacing: 0;
    white-space: pre-line;
}

.post-preview__body[b-fcix4fb154] {
    margin-top: 0;
}

@media (max-width: 640px) {
    .post-preview-shell[b-fcix4fb154] {

        padding: 0;
    }

    .post-preview[b-fcix4fb154] {
        width: 100%;
        padding: 18px;
    }

    .post-preview__title[b-fcix4fb154] {
        font-size: 25px;
    }

    .post-preview__lead[b-fcix4fb154],
    .post-preview__body[b-fcix4fb154] {
        font-size: 20px;
    }
}
/* /Shared/Components/FormattedText.razor.rz.scp.css */
.formatted-text__content[b-yjte28rswj] {
    display: contents;
    font: inherit;
    color: inherit;
}

.formatted-text__content[b-yjte28rswj]  p,
.formatted-text__content[b-yjte28rswj]  div {
    margin: 0;
}
/* /Shared/Components/ZoomableImage.razor.rz.scp.css */
.zoomable-image-container[b-8f0osrrdfm] {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    background: var(--rz-base-100);
    border: 1px solid var(--rz-border-color);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mode-overlay[b-8f0osrrdfm] {
    cursor: pointer;
}

.zoomable-image-container:hover[b-8f0osrrdfm] {
    border-color: var(--rz-primary-light);
}

.mode-overlay:hover[b-8f0osrrdfm] {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.zoom-img[b-8f0osrrdfm] {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.zoomable-image-container[b-8f0osrrdfm]  .zoom-img {
    width: 100%;
    height: 100%;
    display: block;
}

.mode-overlay:hover .zoom-img[b-8f0osrrdfm] {
    transform: scale(1.08);
}

.mode-overlay:hover[b-8f0osrrdfm]  .zoom-img {
    transform: scale(1.08);
}

/* ═══════════════════════════════════════════════════════
   Overlay Mode
   ═══════════════════════════════════════════════════════ */
.zoom-overlay[b-8f0osrrdfm] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.25s ease;
    color: white;
}

.zoomable-image-container:hover .zoom-overlay[b-8f0osrrdfm] {
    opacity: 1;
}

.zoom-overlay .rzi[b-8f0osrrdfm] {
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.zoomable-image-container:hover .zoom-overlay .rzi[b-8f0osrrdfm] {
    transform: scale(1);
}

/* ═══════════════════════════════════════════════════════
   Corner Button Mode
   ═══════════════════════════════════════════════════════ */
.corner-zoom-btn[b-8f0osrrdfm] {
    position: absolute;
    bottom: 0.35rem;
    right: 0.35rem;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s ease;
    padding: 0;
    z-index: 5;
}

.zoomable-image-container:hover .corner-zoom-btn[b-8f0osrrdfm] {
    opacity: 1;
}

.corner-zoom-btn:hover[b-8f0osrrdfm] {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.corner-zoom-btn .rzi[b-8f0osrrdfm] {
    font-size: 1.1rem;
}
/* /Shared/Layout/MainLayout.razor.rz.scp.css */
.page[b-y6ego46vvy] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-y6ego46vvy] {
    flex: 1;
}

.sidebar[b-y6ego46vvy] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-y6ego46vvy] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-y6ego46vvy]  a, .top-row[b-y6ego46vvy]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-y6ego46vvy]  a:hover, .top-row[b-y6ego46vvy]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-y6ego46vvy]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-y6ego46vvy] {
        justify-content: space-between;
    }

    .top-row[b-y6ego46vvy]  a, .top-row[b-y6ego46vvy]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-y6ego46vvy] {
        flex-direction: row;
    }

    .sidebar[b-y6ego46vvy] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-y6ego46vvy] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-y6ego46vvy]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-y6ego46vvy], article[b-y6ego46vvy] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-adqxpltp5x] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-adqxpltp5x] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-adqxpltp5x] {
    font-size: 1.1rem;
}

.bi[b-adqxpltp5x] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-adqxpltp5x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-adqxpltp5x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-adqxpltp5x] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-adqxpltp5x] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-adqxpltp5x] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-adqxpltp5x] {
        padding-bottom: 1rem;
    }

    .nav-item[b-adqxpltp5x]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-adqxpltp5x]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-adqxpltp5x]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-adqxpltp5x] {
        display: none;
    }

    .collapse[b-adqxpltp5x] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-adqxpltp5x] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
