/* /Layout/MainLayout.razor.rz.scp.css */
/* ====== Layout principal con MudBlazor ======
   Los estilos críticos (.app-layout, .app-main, .app-content, .app-footer,
   .app-drawer y el drawer mini) están en wwwroot/css/app.css como estilos
   globales, porque los selectores ::deep no alcanzan el root del drawer
   cuando el scope attribute está en ese mismo elemento. Aquí solo quedan
   los estilos propios de este layout: shell no autorizado, backdrop y
   comportamiento responsive. */

.unauthorized-shell[b-c8zcu3vgww] {
    min-height: 100vh;
    background-color: #FAFAFA;
}

/* Backdrop en móvil para cerrar el drawer */
.drawer-backdrop[b-c8zcu3vgww] {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1200;
    animation: fadeIn-b-c8zcu3vgww 0.2s ease;
}

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

/* En pantallas grandes: drawer siempre visible (mini variant) */
@media (min-width: 960px) {
    .drawer-backdrop[b-c8zcu3vgww] {
        display: none;
    }
}

/* En móvil, el drawer abierto ocupa el ancho completo (overlay con backdrop).
   El estado cerrado queda como rail mini (80px) para no tapar el contenido. */
@media (max-width: 959px) {
    .app-drawer.mud-drawer--open[b-c8zcu3vgww] {
        width: 280px !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* ====== NavMenu con MudBlazor ======
   Sobrescribe los estilos de MudNavLink para integrarlo
   con el drawer oscuro del layout. */

.app-navmenu[b-e93c42a8yn] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0.75rem 0.5rem;
    background-color: transparent;
}

.nav-section-title[b-e93c42a8yn] {
    color: rgba(255, 255, 255, 0.55) !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px;
    font-size: 0.7rem !important;
}

/* Quita el borde y padding por defecto de MudNavLink */
[b-e93c42a8yn] .nav-tab-link,
[b-e93c42a8yn] .nav-bottom-link,
[b-e93c42a8yn] .nav-profile-link {
    color: rgba(255, 255, 255, 0.80) !important;
    border-radius: 8px !important;
    margin-bottom: 2px !important;
    padding: 8px 12px !important;
    transition: background 0.15s ease, color 0.15s ease;
}

[b-e93c42a8yn] .nav-tab-link:hover,
[b-e93c42a8yn] .nav-bottom-link:hover,
[b-e93c42a8yn] .nav-profile-link:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: #FFFFFF !important;
}

[b-e93c42a8yn] .nav-tab-link.active-tab {
    background-color: rgba(0, 137, 123, 0.20) !important;
    color: #FFFFFF !important;
    border-left: 3px solid #26A69A !important;
}

[b-e93c42a8yn] .nav-bottom-link > .mud-nav-link.active {
    background-color: rgba(0, 137, 123, 0.20) !important;
    color: #FFFFFF !important;
    border-left: 3px solid #26A69A !important;
}

/* Sección scrollable */
.nav-scroll[b-e93c42a8yn] {
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
    padding: 4px 0;
}

/* Contenedor de cada pestaña: ancla para el badge superpuesto del modo mini */
.nav-item-wrap[b-e93c42a8yn] {
    position: relative;
}

/* Badge de notificaciones visible solo cuando el drawer mini está contraído.
   En ese estado MudBlazor oculta .mud-nav-link-text (donde vive el badge
   inline), así que este badge va superpuesto al icono del nav link. */
.tab-mini-badge[b-e93c42a8yn] {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    display: none;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 9px;
    background-color: var(--mud-palette-secondary);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    box-sizing: border-box;
    pointer-events: none;
}

.app-drawer.mud-drawer--closed.mud-drawer-mini .tab-mini-badge[b-e93c42a8yn] {
    display: block;
}

.nav-bottom[b-e93c42a8yn] {
    margin-top: auto;
    padding-top: 0.25rem;
}

.nav-bottom-row[b-e93c42a8yn] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Botón de cerrar pestaña */
[b-e93c42a8yn] .tab-close-btn {
    opacity: 0;
    transition: opacity 0.15s ease;
}

[b-e93c42a8yn] .nav-tab-link:hover .tab-close-btn {
    opacity: 0.8;
}

[b-e93c42a8yn] .tab-close-btn:hover {
    color: #EF5350 !important;
    opacity: 1 !important;
}

/* Sign out en rojo suave */
[b-e93c42a8yn] .nav-signout {
    color: rgba(239, 83, 80, 0.85) !important;
}

[b-e93c42a8yn] .nav-signout:hover {
    background-color: rgba(239, 83, 80, 0.12) !important;
    color: #EF5350 !important;
}

/* Truncar nombres largos */
[b-e93c42a8yn] .tab-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

/* Drawer en modo mini (escritorio): oculta texto cuando está contraído */
@media (min-width: 960px) {
    .app-navmenu .nav-bottom-row[b-e93c42a8yn],
    .app-navmenu .nav-section-title[b-e93c42a8yn],
    .app-navmenu .tab-name[b-e93c42a8yn] {
        transition: opacity 0.2s ease;
    }
}
/* /Pages/Blog.razor.rz.scp.css */
.blog-container[b-ieo9jkk9pa] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-header[b-ieo9jkk9pa] {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h1[b-ieo9jkk9pa] {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00897B 0%, #26A69A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-header p[b-ieo9jkk9pa] {
    font-size: 1.2rem;
    color: #666;
}

.posts-grid[b-ieo9jkk9pa] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.post-card[b-ieo9jkk9pa] {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover[b-ieo9jkk9pa] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.post-image[b-ieo9jkk9pa] {
    height: 200px;
    background: #eee;
}

.post-image img[b-ieo9jkk9pa] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content[b-ieo9jkk9pa] {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-meta[b-ieo9jkk9pa] {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.post-content h2[b-ieo9jkk9pa] {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.post-content h2 a[b-ieo9jkk9pa] {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.post-content h2 a:hover[b-ieo9jkk9pa] {
    color: #00897B;
}

.post-content p[b-ieo9jkk9pa] {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-footer[b-ieo9jkk9pa] {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-tags[b-ieo9jkk9pa] {
    display: flex;
    gap: 8px;
}

.tag[b-ieo9jkk9pa] {
    font-size: 0.75rem;
    color: #00897B;
    font-weight: 600;
}

.read-more[b-ieo9jkk9pa] {
    font-size: 0.9rem;
    font-weight: 700;
    color: #26A69A;
    text-decoration: none;
}

.loading-container[b-ieo9jkk9pa] {
    text-align: center;
    padding: 100px;
}

.spinner[b-ieo9jkk9pa] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #00897B;
    border-radius: 50%;
    animation: spin-b-ieo9jkk9pa 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin-b-ieo9jkk9pa {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Pages/BlogPostDetail.razor.rz.scp.css */
.post-detail-container[b-fy7cn46s6x] {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.back-to-blog[b-fy7cn46s6x] {
    margin-bottom: 10px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav[b-fy7cn46s6x] {
    margin-bottom: 15px;
}

.breadcrumb-list[b-fy7cn46s6x] {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #888;
    flex-wrap: wrap;
}

.breadcrumb-item[b-fy7cn46s6x] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item a[b-fy7cn46s6x] {
    color: #00897B;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover[b-fy7cn46s6x] {
    color: #26A69A;
    text-decoration: underline;
}

.breadcrumb-separator[b-fy7cn46s6x] {
    color: #ccc;
    font-weight: 300;
}

.breadcrumb-item.active[b-fy7cn46s6x] {
    color: #666;
    font-weight: 500;
}

.breadcrumb-item.active .breadcrumb-separator[b-fy7cn46s6x] {
    display: none;
}

.back-to-blog a[b-fy7cn46s6x] {
    color: #00897B;
    text-decoration: none;
    font-weight: 600;
}

.post-header h1[b-fy7cn46s6x] {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.post-meta[b-fy7cn46s6x] {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.post-meta i[b-fy7cn46s6x] {
    margin-right: 5px;
    color: #00897B;
}

.featured-image[b-fy7cn46s6x] {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.featured-image img[b-fy7cn46s6x] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-body[b-fy7cn46s6x] {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
}

.post-body h2[b-fy7cn46s6x] {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
}

.post-body p[b-fy7cn46s6x] {
    margin-bottom: 25px;
}

.post-body ul[b-fy7cn46s6x] {
    margin-bottom: 25px;
    padding-left: 20px;
}

.post-body li[b-fy7cn46s6x] {
    margin-bottom: 10px;
}

.post-body strong[b-fy7cn46s6x] {
    color: #333;
}

.post-footer[b-fy7cn46s6x] {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.tags[b-fy7cn46s6x] {
    display: flex;
    gap: 10px;
}

.tag[b-fy7cn46s6x] {
    background: #f0f2f5;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #00897B;
}

.loading-container[b-fy7cn46s6x] {
    display: flex;
    justify-content: center;
    padding: 100px;
}

.spinner[b-fy7cn46s6x] {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #26A69A;
    border-radius: 50%;
    animation: spin-b-fy7cn46s6x 1s linear infinite;
}

@keyframes spin-b-fy7cn46s6x {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Pages/ChatRooms.razor.rz.scp.css */
.search-container[b-hqzeuxdclp] {
    margin-bottom: 20px;
}

.search-input[b-hqzeuxdclp] {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.no-rooms-found[b-hqzeuxdclp] {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin: 20px 0;
}

.rooms-container[b-hqzeuxdclp] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.room-card[b-hqzeuxdclp] {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
    background-color: white;
}

.chatroom-row[b-hqzeuxdclp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.chatroom-row:hover[b-hqzeuxdclp] {
    background: #e2e6ea;
}

.room-name[b-hqzeuxdclp] {
    font-weight: 500;
}

.room-users[b-hqzeuxdclp] {
    color: #666;
    font-size: 0.95em;
}
/* /Pages/UserProfile.razor.rz.scp.css */
.user-profile-container[b-6zm3ozlwfy] {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.loading[b-6zm3ozlwfy], .error[b-6zm3ozlwfy] {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.error[b-6zm3ozlwfy] {
    color: #d32f2f;
}

.profile-header[b-6zm3ozlwfy] {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 2rem;
}

.profile-icon[b-6zm3ozlwfy] {
    flex-shrink: 0;
    position: relative;
}

.user-icon-large[b-6zm3ozlwfy] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
}

.profile-picture[b-6zm3ozlwfy] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
    object-fit: cover;
}

.profile-picture-upload[b-6zm3ozlwfy] {
    margin-top: 0.5rem;
    text-align: center;
}

.file-input[b-6zm3ozlwfy] {
    display: none;
}

.file-input-label[b-6zm3ozlwfy] {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #00897B;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
}

.file-input-label:hover[b-6zm3ozlwfy] {
    background-color: #00796B;
}

.upload-error[b-6zm3ozlwfy] {
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.user-image-masculino[b-6zm3ozlwfy] {
    fill: #2196F3;
}

.user-image-femenino[b-6zm3ozlwfy] {
    fill: #E91E63;
}

.profile-info h2[b-6zm3ozlwfy] {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    color: #333;
}

.edit-username-input[b-6zm3ozlwfy] {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    color: #333;
    border: 2px solid #00897B;
    border-radius: 4px;
    padding: 0.5rem;
    width: 100%;
    max-width: 400px;
    font-weight: 500;
}

.edit-username-input:focus[b-6zm3ozlwfy] {
    outline: none;
    border-color: #00796B;
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.1);
}

.user-details[b-6zm3ozlwfy] {
    margin: 0;
    font-size: 1.1rem;
    color: #666;
}

.profile-section[b-6zm3ozlwfy] {
    margin-bottom: 2rem;
}

.profile-section h3[b-6zm3ozlwfy] {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.no-rooms[b-6zm3ozlwfy] {
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

.rooms-hashtags[b-6zm3ozlwfy] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem 0;
}

.room-hashtag[b-6zm3ozlwfy] {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #E0F2F1;
    color: #00796B;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.room-hashtag:hover[b-6zm3ozlwfy] {
    background-color: #00897B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 137, 123, 0.3);
    border-color: #00796B;
}

.profile-actions[b-6zm3ozlwfy] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
}

.btn-primary[b-6zm3ozlwfy] {
    padding: 0.75rem 2rem;
    background-color: #00897B;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-primary:hover[b-6zm3ozlwfy] {
    background-color: #00796B;
}

.btn-secondary[b-6zm3ozlwfy] {
    padding: 0.75rem 2rem;
    background-color: #757575;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-secondary:hover[b-6zm3ozlwfy] {
    background-color: #616161;
}

@media (max-width: 768px) {
    .user-profile-container[b-6zm3ozlwfy] {
        margin: 1rem;
        padding: 1rem;
    }

    .profile-header[b-6zm3ozlwfy] {
        flex-direction: column;
        text-align: center;
    }

    .rooms-hashtags[b-6zm3ozlwfy] {
        justify-content: center;
    }
}
/* /Shared/Footer.razor.rz.scp.css */
.app-footer[b-4b0oi3taqq] {
    margin-top: auto;
}

@media (max-width: 600px) {
    [b-4b0oi3taqq] .app-footer .mud-stack-row {
        flex-wrap: wrap;
        row-gap: 4px;
    }
}
/* /Shared/LanguageSelector.razor.rz.scp.css */
.lang-selector[b-gg773czqv6] {
    padding: 0;
    margin: 0;
}

/* Ojo con el scope: el elemento raíz .lang-selector lleva el atributo de scope,
   así que los selectores ::deep deben ir DESPUÉS de .lang-selector para alcanzar
   los elementos internos de MudChip/MudIconButton. */
.lang-selector[b-gg773czqv6]  .mud-icon-button {
    color: #FFFFFF !important;
}

/* Los chips del selector se dibujan sobre el drawer oscuro (#1A1F2B),
   así que el texto debe ser blanco sólido para garantizar el contraste. */
.lang-selector[b-gg773czqv6]  .mud-chip,
.lang-selector[b-gg773czqv6]  .mud-chip.mud-chip-text,
.lang-selector[b-gg773czqv6]  .mud-chip .mud-chip-label {
    color: #FFFFFF !important;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    height: 24px;
    min-width: 28px;
    margin: 2px;
}

.lang-selector[b-gg773czqv6]  .mud-chip:hover,
.lang-selector[b-gg773czqv6]  .mud-chip:hover .mud-chip-label {
    background-color: rgba(255, 255, 255, 0.28) !important;
    color: #FFFFFF !important;
}

.lang-selector[b-gg773czqv6]  .mud-chip.mud-chip-selected,
.lang-selector[b-gg773czqv6]  .mud-chip.mud-chip-selected .mud-chip-label {
    color: #FFFFFF !important;
    background-color: #26A69A !important;
    border-color: #26A69A !important;
    font-weight: 600;
}
/* /Shared/ReportModal.razor.rz.scp.css */
.modal-backdrop[b-5d74c5v3b0] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn-b-5d74c5v3b0 0.2s ease;
}

.report-modal[b-5d74c5v3b0] {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp-b-5d74c5v3b0 0.3s ease;
}

.modal-header[b-5d74c5v3b0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h3[b-5d74c5v3b0] {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.close-btn[b-5d74c5v3b0] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover[b-5d74c5v3b0] {
    color: #333;
}

.modal-body[b-5d74c5v3b0] {
    padding: 25px;
}

.report-info[b-5d74c5v3b0] {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.form-group[b-5d74c5v3b0] {
    margin-bottom: 20px;
}

.form-group label[b-5d74c5v3b0] {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.radio-group[b-5d74c5v3b0] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option[b-5d74c5v3b0] {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option:hover[b-5d74c5v3b0] {
    border-color: #00897B;
    background: #f8f9ff;
}

.radio-option input[type="radio"][b-5d74c5v3b0] {
    margin-right: 10px;
    cursor: pointer;
}

.radio-option input[type="radio"]:checked+span[b-5d74c5v3b0] {
    color: #00897B;
    font-weight: 600;
}

.radio-option span[b-5d74c5v3b0] {
    color: #555;
}

textarea[b-5d74c5v3b0] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 0.2s;
}

textarea:focus[b-5d74c5v3b0] {
    outline: none;
    border-color: #00897B;
}

.form-group small[b-5d74c5v3b0] {
    color: #999;
    font-size: 0.85rem;
}

.modal-actions[b-5d74c5v3b0] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 25px;
}

.btn[b-5d74c5v3b0] {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary[b-5d74c5v3b0] {
    background: linear-gradient(135deg, #00897B 0%, #26A69A 100%);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-5d74c5v3b0] {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 137, 123, 0.4);
}

.btn-primary:disabled[b-5d74c5v3b0] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary[b-5d74c5v3b0] {
    background: #f0f0f0;
    color: #333;
}

.btn-secondary:hover[b-5d74c5v3b0] {
    background: #e0e0e0;
}

.success-message[b-5d74c5v3b0] {
    text-align: center;
    padding: 30px 20px;
}

.success-icon[b-5d74c5v3b0] {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px;
    animation: scaleIn-b-5d74c5v3b0 0.4s ease;
}

.success-message h4[b-5d74c5v3b0] {
    color: #333;
    margin-bottom: 10px;
}

.success-message p[b-5d74c5v3b0] {
    color: #666;
    margin-bottom: 25px;
}

@keyframes fadeIn-b-5d74c5v3b0 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-5d74c5v3b0 {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn-b-5d74c5v3b0 {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .report-modal[b-5d74c5v3b0] {
        width: 95%;
    }

    .modal-header[b-5d74c5v3b0] {
        padding: 15px 20px;
    }

    .modal-body[b-5d74c5v3b0] {
        padding: 20px;
    }
}
/* /Shared/TermsAcceptanceModal.razor.rz.scp.css */
.modal-backdrop[b-693onuyfhk] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.terms-modal-container[b-693onuyfhk] {
    background: white;
    width: 90%;
    max-width: 550px;
    max-height: 88vh;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modal-appear-b-693onuyfhk 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modal-appear-b-693onuyfhk {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.terms-modal-header[b-693onuyfhk] {
    background: linear-gradient(135deg, #00897B 0%, #26A69A 100%);
    padding: 16px 20px;
    color: white;
    text-align: center;
    flex-shrink: 0;
}

.terms-modal-header h2[b-693onuyfhk] {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.terms-modal-body[b-693onuyfhk] {
    padding: 18px 24px;
    color: #444;
    overflow-y: auto;
    min-height: 0;
}

.terms-modal-body p[b-693onuyfhk] {
    line-height: 1.5;
    margin-bottom: 12px;
}

.terms-summary[b-693onuyfhk] {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 14px;
    border-left: 4px solid #00897B;
}

.summary-line[b-693onuyfhk] {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px !important;
    font-size: 0.92rem;
}

.summary-line:last-child[b-693onuyfhk] {
    margin-bottom: 0 !important;
}

.summary-line i[b-693onuyfhk] {
    color: #00897B;
    margin-right: 10px;
    margin-top: 4px;
    width: 16px;
    flex-shrink: 0;
}

.prohibited-tags[b-693onuyfhk] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.prohibited-tag[b-693onuyfhk] {
    background-color: #FFF3E0;
    border: 1px solid #FFE0B2;
    color: #6D4C00;
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 0.78rem;
    white-space: nowrap;
}

.view-full-terms[b-693onuyfhk] {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.view-full-terms a[b-693onuyfhk] {
    color: #00897B;
    text-decoration: none;
    font-weight: 600;
}

.acceptance-checkbox[b-693onuyfhk] {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

.custom-checkbox[b-693onuyfhk] {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    position: relative;
    padding-left: 35px;
}

.custom-checkbox input[b-693onuyfhk] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark[b-693onuyfhk] {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 22px;
    width: 22px;
    background-color: #eee;
    border-radius: 4px;
    transition: all 0.2s;
}

.custom-checkbox:hover input~.checkmark[b-693onuyfhk] {
    background-color: #ccc;
}

.custom-checkbox input:checked~.checkmark[b-693onuyfhk] {
    background-color: #00897B;
}

.checkmark[b-693onuyfhk]:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark[b-693onuyfhk]:after {
    display: block;
}

.custom-checkbox .checkmark[b-693onuyfhk]:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.label-text[b-693onuyfhk] {
    font-weight: 600;
    color: #333;
}

.terms-modal-footer[b-693onuyfhk] {
    padding: 12px 24px;
    background: #f8f9fa;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-shrink: 0;
}

.btn-decline[b-693onuyfhk] {
    background: transparent;
    border: 1px solid #ccc;
    color: #666;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-decline:hover[b-693onuyfhk] {
    background: #f0f0f0;
    color: #333;
}

.btn-accept[b-693onuyfhk] {
    background: linear-gradient(135deg, #00897B 0%, #26A69A 100%);
    border: none;
    color: white;
    padding: 8px 26px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(0, 137, 123, 0.4);
}

.btn-accept:hover:not(:disabled)[b-693onuyfhk] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 137, 123, 0.5);
}

.btn-accept:active:not(:disabled)[b-693onuyfhk] {
    transform: translateY(0);
}

.btn-accept:disabled[b-693onuyfhk] {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.7;
}
