/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-h9o6falx6b] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-h9o6falx6b] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-lotgnj1fxg] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-lotgnj1fxg] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-lotgnj1fxg] {
    font-size: 1.1rem;
}

.oi[b-lotgnj1fxg] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-lotgnj1fxg] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

   
    .nav-item:last-of-type[b-lotgnj1fxg] {
        padding-bottom: 1rem;
    }

    .nav-item[b-lotgnj1fxg]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-lotgnj1fxg]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-lotgnj1fxg]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-lotgnj1fxg] {
        display: none;
    }

    .collapse[b-lotgnj1fxg] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
/* /Components/Pages/Championships.razor.rz.scp.css */
/* Championships Page Modern Styling - Elegant gold/black theme */

/* Champion Card Enhancement */
.champion-card[b-ar67ebz07n] {
    background: linear-gradient(to bottom right, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    overflow: hidden;
    border: none;
    transition: all 0.4s ease;
    position: relative;
}

.champion-card[b-ar67ebz07n]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
}

.champion-card:hover[b-ar67ebz07n] {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.3);
}

.champion-card-content[b-ar67ebz07n] {
    padding: 2rem;
}

/* Champion Header Section */
.champion-header[b-ar67ebz07n] {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.champion-image-container[b-ar67ebz07n] {
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 15px;
    background: white;
}

.champion-image[b-ar67ebz07n] {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    border: 4px solid #FFD700;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4), 0 0 0 8px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    display: block;
    background: transparent !important;
}

.champion-image:hover[b-ar67ebz07n] {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6), 0 0 0 8px rgba(255, 215, 0, 0.2);
}

/* Hide any loading indicators or pseudo-elements on images */
.champion-image[b-ar67ebz07n]::before,
.champion-image[b-ar67ebz07n]::after {
    display: none !important;
}

.champion-medal-badge[b-ar67ebz07n] {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    border: 5px solid white;
    animation: shimmer-b-ar67ebz07n 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes shimmer-b-ar67ebz07n {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

.champion-image-left[b-ar67ebz07n] {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.champion-image-right[b-ar67ebz07n] {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

/* Champion Info Section */
.champion-info[b-ar67ebz07n] {
    flex-grow: 1;
    min-width: 250px;
}

.champion-name[b-ar67ebz07n] {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.champion-name-icon[b-ar67ebz07n] {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.champion-birth[b-ar67ebz07n] {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.champion-birth-icon[b-ar67ebz07n] {
    color: #FFD700;
    font-size: 1.2rem;
}

/* Results Section with Icons */
.champion-results[b-ar67ebz07n] {
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #FFD700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.champion-results-title[b-ar67ebz07n] {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.champion-results-icon[b-ar67ebz07n] {
    font-size: 1.5rem;
    color: #FFD700;
}

.champion-results-content[b-ar67ebz07n] {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}

.champion-results-content i[b-ar67ebz07n] {
    color: #FFD700;
    margin-right: 0.5rem;
}

/* Description Section */
.champion-description[b-ar67ebz07n] {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

.champion-description p[b-ar67ebz07n] {
    margin-bottom: 1rem;
}

/* Achievement List Styling */
.champion-achievements[b-ar67ebz07n] {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.champion-achievements ul[b-ar67ebz07n] {
    list-style: none;
    padding-left: 0;
}

.champion-achievements li[b-ar67ebz07n] {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.champion-achievements li:hover[b-ar67ebz07n] {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.2);
}

.champion-achievements li[b-ar67ebz07n]::before {
    content: '\f091';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #FFD700;
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .champion-image[b-ar67ebz07n] {
        width: 180px;
        height: 180px;
    }

    .champion-name[b-ar67ebz07n] {
        font-size: 1.6rem;
    }

    .champion-image-left[b-ar67ebz07n],
    .champion-image-right[b-ar67ebz07n] {
        float: none;
        margin: 0 auto 1.5rem;
        display: block;
    }

    .champion-image-container[b-ar67ebz07n] {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .champion-image[b-ar67ebz07n] {
        width: 150px;
        height: 150px;
    }

    .champion-medal-badge[b-ar67ebz07n] {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        top: -12px;
        right: -12px;
    }

    .champion-name[b-ar67ebz07n] {
        font-size: 1.4rem;
    }

    .champion-card-content[b-ar67ebz07n] {
        padding: 1.5rem;
    }

    .champion-birth[b-ar67ebz07n] {
        font-size: 0.9rem;
    }

    .champion-description[b-ar67ebz07n] {
        font-size: 1rem;
    }
}

/* Scroll Animation */
.champion-card[b-ar67ebz07n] {
    opacity: 0;
    animation: slideInFromBottom-b-ar67ebz07n 0.6s ease forwards;
}

.champion-card:nth-child(1)[b-ar67ebz07n] { animation-delay: 0.1s; }
.champion-card:nth-child(2)[b-ar67ebz07n] { animation-delay: 0.2s; }
.champion-card:nth-child(3)[b-ar67ebz07n] { animation-delay: 0.3s; }
.champion-card:nth-child(4)[b-ar67ebz07n] { animation-delay: 0.4s; }
.champion-card:nth-child(5)[b-ar67ebz07n] { animation-delay: 0.5s; }
.champion-card:nth-child(6)[b-ar67ebz07n] { animation-delay: 0.6s; }

@keyframes slideInFromBottom-b-ar67ebz07n {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Pages/Competition/CompetitionPage.razor.rz.scp.css */
/* Competition Page Custom Styles */

/* Hero Section */
.competition-hero[b-p2s2aic76c] {
    background: linear-gradient(135deg, var(--rz-primary) 0%, var(--rz-secondary) 100%);
    color: white;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.competition-hero[b-p2s2aic76c]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.hero-title[b-p2s2aic76c] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-meta[b-p2s2aic76c] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.95;
}

.hero-meta-item[b-p2s2aic76c] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Sticky Action Bar */
.action-bar[b-p2s2aic76c] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    padding: 1rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.action-buttons[b-p2s2aic76c] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn[b-p2s2aic76c] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-btn:hover[b-p2s2aic76c] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Info Cards */
.info-card[b-p2s2aic76c] {
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: white;
    height: 100%;
}

.info-card:hover[b-p2s2aic76c] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.info-card-header[b-p2s2aic76c] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid;
}

.info-card-icon[b-p2s2aic76c] {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
}

.info-card-title[b-p2s2aic76c] {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.info-card-content[b-p2s2aic76c] {
    font-size: 1rem;
    line-height: 1.6;
}

/* Color Variants */
.info-card-primary .info-card-header[b-p2s2aic76c] { border-color: var(--rz-primary); }
.info-card-primary .info-card-icon[b-p2s2aic76c] { background: rgba(var(--rz-primary-rgb), 0.1); color: var(--rz-primary); }

.info-card-secondary .info-card-header[b-p2s2aic76c] { border-color: var(--rz-secondary); }
.info-card-secondary .info-card-icon[b-p2s2aic76c] { background: rgba(var(--rz-secondary-rgb), 0.1); color: var(--rz-secondary); }

.info-card-success .info-card-header[b-p2s2aic76c] { border-color: var(--rz-success); }
.info-card-success .info-card-icon[b-p2s2aic76c] { background: rgba(var(--rz-success-rgb), 0.1); color: var(--rz-success); }

.info-card-warning .info-card-header[b-p2s2aic76c] { border-color: var(--rz-warning); }
.info-card-warning .info-card-icon[b-p2s2aic76c] { background: rgba(var(--rz-warning-rgb), 0.1); color: var(--rz-warning); }

.info-card-info .info-card-header[b-p2s2aic76c] { border-color: var(--rz-info); }
.info-card-info .info-card-icon[b-p2s2aic76c] { background: rgba(var(--rz-info-rgb), 0.1); color: var(--rz-info); }

.info-card-danger .info-card-header[b-p2s2aic76c] { border-color: var(--rz-danger); }
.info-card-danger .info-card-icon[b-p2s2aic76c] { background: rgba(var(--rz-danger-rgb), 0.1); color: var(--rz-danger); }

/* Document Links */
.document-link[b-p2s2aic76c] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--rz-primary) 0%, var(--rz-secondary) 100%);
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.document-link:hover[b-p2s2aic76c] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: white;
}

.document-icon[b-p2s2aic76c] {
    font-size: 1.5rem;
}

/* Section Headers */
.section-header[b-p2s2aic76c] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--rz-primary);
}

.section-icon[b-p2s2aic76c] {
    font-size: 2rem;
    color: var(--rz-primary);
}

.section-title[b-p2s2aic76c] {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

/* Competition Events Tabs */
.event-tabs[b-p2s2aic76c] {
    margin-bottom: 2rem;
}

.event-tab[b-p2s2aic76c] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px 8px 0 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-bottom: none;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.event-tab:hover[b-p2s2aic76c] {
    background: rgba(var(--rz-primary-rgb), 0.05);
}

.event-tab.active[b-p2s2aic76c] {
    background: var(--rz-primary);
    color: white;
    border-color: var(--rz-primary);
}

/* Data Grid Enhancements */
.competition-grid[b-p2s2aic76c] {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Badges */
.status-badge[b-p2s2aic76c] {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

/* Loading State */
.loading-overlay[b-p2s2aic76c] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner[b-p2s2aic76c] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Gallery */
.image-gallery[b-p2s2aic76c] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item[b-p2s2aic76c] {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover[b-p2s2aic76c] {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img[b-p2s2aic76c] {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Animations */
@keyframes fadeIn-b-p2s2aic76c {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in[b-p2s2aic76c] {
    animation: fadeIn-b-p2s2aic76c 0.6s ease-out;
}

.fade-in-delay-1[b-p2s2aic76c] { animation-delay: 0.1s; animation-fill-mode: both; }
.fade-in-delay-2[b-p2s2aic76c] { animation-delay: 0.2s; animation-fill-mode: both; }
.fade-in-delay-3[b-p2s2aic76c] { animation-delay: 0.3s; animation-fill-mode: both; }

/* Responsive */
@media (max-width: 768px) {
    .hero-title[b-p2s2aic76c] {
        font-size: 1.75rem;
    }

    .hero-meta[b-p2s2aic76c] {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title[b-p2s2aic76c] {
        font-size: 1.25rem;
    }

    .action-buttons[b-p2s2aic76c] {
        flex-direction: column;
    }

    .action-btn[b-p2s2aic76c] {
        width: 100%;
    }
}

/* Collapsible Enhancement */
[b-p2s2aic76c] .rz-panel {
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

[b-p2s2aic76c] .rz-panel-titlebar {
    background: linear-gradient(135deg, rgba(var(--rz-primary-rgb), 0.9) 0%, rgba(var(--rz-secondary-rgb), 0.9) 100%);
    padding: 1rem 1.5rem;
}

[b-p2s2aic76c] .rz-panel-content {
    padding: 1.5rem;
}

/* Stats Cards */
.stats-grid[b-p2s2aic76c] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card[b-p2s2aic76c] {
    padding: 1.5rem;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover[b-p2s2aic76c] {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.stat-value[b-p2s2aic76c] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rz-primary);
    margin-bottom: 0.5rem;
}

.stat-label[b-p2s2aic76c] {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.6);
}

/* Download Cards */
.download-card[b-p2s2aic76c] {
    padding: 1.5rem;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.download-card:hover[b-p2s2aic76c] {
    border-color: var(--rz-primary);
    box-shadow: 0 4px 12px rgba(var(--rz-primary-rgb), 0.2);
}

.download-icon[b-p2s2aic76c] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Team Display */
.team-member-list[b-p2s2aic76c] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-member-item[b-p2s2aic76c] {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.team-member-item:last-child[b-p2s2aic76c] {
    border-bottom: none;
}
/* /Components/Pages/Competition/Entry/Entry.razor.rz.scp.css */
[b-wzkzkncgxy] #ezmiez {
    background: var(--rz-base-50);
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

[b-wzkzkncgxy] .own-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: var(--rz-base-background);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[b-wzkzkncgxy] .entry-header {
    margin-bottom: 2rem;
    animation: slideInDown-b-wzkzkncgxy 0.4s ease-out;
}

[b-wzkzkncgxy] .entry-container {
    animation: fadeIn-b-wzkzkncgxy 0.3s ease-in;
}

@keyframes fadeIn-b-wzkzkncgxy {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown-b-wzkzkncgxy {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[b-wzkzkncgxy] .rz-alert {
    border-left: 4px solid currentColor;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.2s ease;
}

[b-wzkzkncgxy] .rz-alert:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(2px);
}

[b-wzkzkncgxy] .entry-page .rz-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--rz-base-300);
    background: var(--rz-base-100);
    padding: 1.5rem;
}

[b-wzkzkncgxy] .entry-page .rz-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

[b-wzkzkncgxy] .mainH1 {
    color: var(--rz-text-title-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--rz-primary);
    display: inline-block;
    animation: slideInDown-b-wzkzkncgxy 0.4s ease-out;
}

[b-wzkzkncgxy] .text-center {
    padding: 1.5rem 0;
}

[b-wzkzkncgxy] .text-center .rz-button {
    min-width: 200px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

[b-wzkzkncgxy] .text-center .rz-button:hover:not([disabled]) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

[b-wzkzkncgxy] .text-center .rz-button:active:not([disabled]) {
    transform: translateY(0);
}

/* Alert spacing */
[b-wzkzkncgxy] .mb-3 {
    margin-bottom: 1.5rem !important;
}

[b-wzkzkncgxy] .my-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    [b-wzkzkncgxy] #ezmiez {
        padding: 1rem 0;
    }
    
    [b-wzkzkncgxy] .own-container {
        padding: 1.25rem 1rem;
        border-radius: 12px;
    }
    
    [b-wzkzkncgxy] .entry-page .rz-card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    [b-wzkzkncgxy] .mainH1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    [b-wzkzkncgxy] .text-center .rz-button {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    [b-wzkzkncgxy] #ezmiez {
        padding: 0.5rem 0;
    }
    
    [b-wzkzkncgxy] .own-container {
        padding: 1rem 0.75rem;
        border-radius: 8px;
        box-shadow: none;
        background: transparent;
    }
    
    [b-wzkzkncgxy] .mainH1 {
        font-size: 1.25rem;
        padding-bottom: 0.5rem;
    }
    
    [b-wzkzkncgxy] .rz-alert {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}
/* /Components/Pages/Competition/Entry/EntryCompetitionEvent.razor.rz.scp.css */
[b-vmcsm9d3pe] .competition-event-card {
    background: var(--rz-base-100);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--rz-base-300);
    margin-bottom: 1.5rem !important;
}

[b-vmcsm9d3pe] .competition-event-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    border-color: var(--rz-primary-light);
}

[b-vmcsm9d3pe] .event-header {
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    user-select: none;
}

[b-vmcsm9d3pe] .event-header:hover {
    background-color: var(--rz-base-200);
}

[b-vmcsm9d3pe] .event-header:active {
    transform: scale(0.99);
}

[b-vmcsm9d3pe] .event-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--rz-primary-light) 0%, var(--rz-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(var(--rz-primary-rgb, 33, 150, 243), 0.3);
}

[b-vmcsm9d3pe] .event-content {
    animation: slideDown-b-vmcsm9d3pe 0.3s ease-out;
    overflow: hidden;
    padding-top: 0.5rem;
    border-top: 1px solid var(--rz-base-300);
}

@keyframes slideDown-b-vmcsm9d3pe {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[b-vmcsm9d3pe] .team-section {
    background: linear-gradient(135deg, rgba(var(--rz-primary-rgb, 33, 150, 243), 0.02) 0%, rgba(var(--rz-primary-rgb, 33, 150, 243), 0.05) 100%);
    border: 1px dashed var(--rz-primary-light);
}

/* DataGrid Styling */
[b-vmcsm9d3pe] .competition-event-card .rz-datatable-data td {
    vertical-align: middle !important;
    padding: 0.75rem !important;
}

[b-vmcsm9d3pe] .competition-event-card .rz-datatable-data tr {
    transition: background-color 0.2s ease;
}

[b-vmcsm9d3pe] .competition-event-card .rz-datatable-data tr:hover {
    background-color: rgba(var(--rz-primary-rgb, 33, 150, 243), 0.04) !important;
}

[b-vmcsm9d3pe] .competition-event-card .rz-datatable-header th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: var(--rz-text-secondary-color);
    padding: 0.75rem !important;
}

/* Badge Styling */
[b-vmcsm9d3pe] .competition-event-card .rz-badge {
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

/* Button Styling */
[b-vmcsm9d3pe] .competition-event-card .rz-button {
    transition: all 0.2s ease;
    font-weight: 500;
}

[b-vmcsm9d3pe] .competition-event-card .rz-button:hover:not([disabled]) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

[b-vmcsm9d3pe] .competition-event-card .rz-button:active:not([disabled]) {
    transform: translateY(0);
}

[b-vmcsm9d3pe] .competition-event-card .rz-button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Dropdown Styling */
[b-vmcsm9d3pe] .competition-event-card .rz-dropdown {
    border-radius: 8px;
    border: 1px solid var(--rz-base-400);
    transition: all 0.2s ease;
}

[b-vmcsm9d3pe] .competition-event-card .rz-dropdown:hover {
    border-color: var(--rz-primary-light);
}

[b-vmcsm9d3pe] .competition-event-card .rz-dropdown:focus-within {
    border-color: var(--rz-primary);
    box-shadow: 0 0 0 3px rgba(var(--rz-primary-rgb, 33, 150, 243), 0.1);
}

/* Alert Styling */
[b-vmcsm9d3pe] .competition-event-card .rz-alert {
    border-radius: 8px;
    border-left: 4px solid currentColor;
}

/* Card Variant Styling */
[b-vmcsm9d3pe] .competition-event-card .rz-card.rz-variant-outlined {
    border: 1px solid var(--rz-base-300);
    border-radius: 12px;
    transition: all 0.2s ease;
    padding: 1.25rem;
}

[b-vmcsm9d3pe] .competition-event-card .rz-card.rz-variant-outlined:hover {
    border-color: var(--rz-primary-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Spacing between cards inside event-content */
[b-vmcsm9d3pe] .event-content > .rz-card {
    margin-bottom: 1.5rem;
}

[b-vmcsm9d3pe] .event-content > .rz-card:last-child {
    margin-bottom: 0;
}

/* Checkbox Styling */
[b-vmcsm9d3pe] .competition-event-card .rz-chkbox {
    transition: all 0.2s ease;
}

[b-vmcsm9d3pe] .competition-event-card .rz-chkbox:hover {
    transform: scale(1.1);
}

/* Label Styling */
[b-vmcsm9d3pe] .competition-event-card .rz-label {
    margin-bottom: 0.5rem;
    color: var(--rz-text-secondary-color);
}

/* Icon Animations */
[b-vmcsm9d3pe] .competition-event-card .rz-icon {
    transition: all 0.2s ease;
}

[b-vmcsm9d3pe] .event-header .rz-icon:last-child {
    transition: transform 0.3s ease;
}

/* Name cell - ensure it's always visible */
[b-vmcsm9d3pe] .name-cell {
    min-width: 150px;
    word-break: break-word;
}

[b-vmcsm9d3pe] .name-cell span {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    [b-vmcsm9d3pe] .competition-event-card {
        margin-bottom: 1rem !important;
    }
    
    [b-vmcsm9d3pe] .event-icon {
        width: 40px;
        height: 40px;
    }
    
    [b-vmcsm9d3pe] .hide-on-mobile {
        display: none !important;
    }
    
    [b-vmcsm9d3pe] .flex-wrap-mobile {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    [b-vmcsm9d3pe] .flex-wrap-mobile > div {
        width: 100% !important;
        min-width: 100% !important;
    }
    
    [b-vmcsm9d3pe] .btn-full-mobile {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    [b-vmcsm9d3pe] .competition-event-card .rz-card.rz-variant-outlined {
        padding: 1rem;
    }
    
    [b-vmcsm9d3pe] .event-content {
        padding-top: 0.75rem;
    }
    
    /* Ensure name column takes full width on mobile */
    [b-vmcsm9d3pe] .entries-grid .rz-datatable-data td:not(:first-child):not(:last-child) {
        min-width: 0 !important;
    }
    
    [b-vmcsm9d3pe] .name-cell {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    [b-vmcsm9d3pe] .hide-on-small-mobile {
        display: none !important;
    }
    
    [b-vmcsm9d3pe] .event-icon {
        width: 36px;
        height: 36px;
    }
    
    [b-vmcsm9d3pe] .event-header {
        padding: 0.25rem;
    }
    
    [b-vmcsm9d3pe] .competition-event-card .rz-datatable-data td {
        padding: 0.5rem !important;
        font-size: 0.875rem;
    }
    
    [b-vmcsm9d3pe] .competition-event-card .rz-datatable-header th {
        padding: 0.5rem !important;
        font-size: 0.7rem;
    }
}

/* Loading State */
@keyframes pulse-b-vmcsm9d3pe {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

[b-vmcsm9d3pe] .competition-event-card [disabled] {
    animation: pulse-b-vmcsm9d3pe 1.5s ease-in-out infinite;
}

/* Empty State */
[b-vmcsm9d3pe] .competition-event-card .rz-datatable-data .rz-datatable-emptymessage {
    padding: 2rem;
    text-align: center;
    color: var(--rz-text-secondary-color);
    font-style: italic;
}

/* Stack spacing improvements */
[b-vmcsm9d3pe] .competition-event-card .rz-stack {
    gap: 1rem;
}

[b-vmcsm9d3pe] .competition-event-card .rz-stack.rz-gap-1rem > * {
    margin-bottom: 0 !important;
}
/* /Components/Pages/Documents/Documents.razor.rz.scp.css */
/* Documents Page - Component Scoped Styles */

/* Add Document Section */
.add-document-section[b-vnrnyr12mp] {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.add-document-button[b-vnrnyr12mp] {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%) !important;
    border: none !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-document-button:hover[b-vnrnyr12mp] {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.6) !important;
}

/* Loading State */
.loading-container[b-vnrnyr12mp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.loading-spinner[b-vnrnyr12mp] {
    margin-bottom: 1.5rem;
}

.loading-text[b-vnrnyr12mp] {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

/* Document Category Card */
.document-category-card[b-vnrnyr12mp] {
    background: linear-gradient(to bottom right, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-bottom: 2.5rem;
    overflow: hidden;
    border: none;
    transition: all 0.4s ease;
    position: relative;
    animation: slideInUp-b-vnrnyr12mp 0.6s ease;
}

.document-category-card[b-vnrnyr12mp]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #2196F3 0%, #1976D2 100%);
}

.document-category-card:hover[b-vnrnyr12mp] {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(33, 150, 243, 0.25);
}

@keyframes slideInUp-b-vnrnyr12mp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Header */
.category-header[b-vnrnyr12mp] {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.category-header[b-vnrnyr12mp]::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
    transform: skewX(-20deg);
}

.category-icon[b-vnrnyr12mp] {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.category-title[b-vnrnyr12mp] {
    color: white !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    margin: 0 !important;
    flex-grow: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.category-badge[b-vnrnyr12mp] {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Documents Grid */
.documents-grid[b-vnrnyr12mp] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

/* Document Card */
.document-card[b-vnrnyr12mp] {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

.document-card:hover[b-vnrnyr12mp] {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(33, 150, 243, 0.2);
    border-color: #2196F3;
}

.document-card-icon[b-vnrnyr12mp] {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2196F3;
    min-height: 100px;
}

.document-card-icon i[b-vnrnyr12mp] {
    transition: all 0.3s ease;
}

.document-card:hover .document-card-icon i[b-vnrnyr12mp] {
    transform: scale(1.1) rotate(5deg);
}

.document-card-content[b-vnrnyr12mp] {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-name[b-vnrnyr12mp] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
    text-align: center;
}

.document-card-actions[b-vnrnyr12mp] {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    display: flex;
    gap: 0.75rem;
    border-top: 1px solid #e0e0e0;
}

.view-button[b-vnrnyr12mp] {
    flex-grow: 1;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.view-button:hover[b-vnrnyr12mp] {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4) !important;
}

.delete-button[b-vnrnyr12mp] {
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.delete-button:hover[b-vnrnyr12mp] {
    transform: scale(1.1) !important;
}

/* Empty Category State */
.empty-category[b-vnrnyr12mp] {
    padding: 4rem 2rem;
    text-align: center;
}

.empty-icon[b-vnrnyr12mp] {
    color: #ccc;
    margin-bottom: 1rem;
}

.empty-text[b-vnrnyr12mp] {
    font-size: 1.1rem;
    color: #999;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .documents-grid[b-vnrnyr12mp] {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .category-header[b-vnrnyr12mp] {
        padding: 1.25rem 1.5rem;
        flex-wrap: wrap;
    }

    .category-title[b-vnrnyr12mp] {
        font-size: 1.25rem !important;
        width: 100%;
        margin-bottom: 0.5rem !important;
    }

    .category-badge[b-vnrnyr12mp] {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .add-document-button[b-vnrnyr12mp] {
        width: 100%;
        padding: 0.875rem 2rem !important;
        font-size: 1rem !important;
    }

    .document-card-actions[b-vnrnyr12mp] {
        flex-direction: column;
    }

    .view-button[b-vnrnyr12mp] {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .category-icon[b-vnrnyr12mp] {
        width: 40px;
        height: 40px;
    }

    .document-card-icon[b-vnrnyr12mp] {
        padding: 1.25rem;
        min-height: 80px;
    }
}
/* /Components/Pages/Information/Branches/Branches.razor.rz.scp.css */
/* Branches Page Modern Styling - Component-specific styles with Radzen */

/* Loading State */
.loading-container[b-crt5ztl5wj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.loading-spinner[b-crt5ztl5wj] {
    margin-bottom: 1.5rem;
}

.loading-text[b-crt5ztl5wj] {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

/* Branch Leader Card Styling */
.branch-leader-card[b-crt5ztl5wj] {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    position: relative;
    animation: slideInUp-b-crt5ztl5wj 0.6s ease;
}

.branch-leader-card[b-crt5ztl5wj]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.branch-leader-card:hover[b-crt5ztl5wj] {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.25);
}

@keyframes slideInUp-b-crt5ztl5wj {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Header with Icon */
.branch-card-header[b-crt5ztl5wj] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem 0.5rem;
}

.branch-card-header .rz-icon[b-crt5ztl5wj] {
    color: #667eea;
}

/* Profile Image Enhancement */
.branch-profile-image-container[b-crt5ztl5wj] {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.branch-profile-image[b-crt5ztl5wj] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.branch-profile-image:hover[b-crt5ztl5wj] {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Hide Radzen Image loading spinner */
.branch-profile-image-container :global(.rz-image)[b-crt5ztl5wj],
.branch-profile-image-container :global(img)[b-crt5ztl5wj] {
    background: transparent !important;
}

.branch-profile-image-container :global(.rz-image::before)[b-crt5ztl5wj],
.branch-profile-image-container :global(.rz-image::after)[b-crt5ztl5wj] {
    display: none !important;
}

.branch-profile-badge[b-crt5ztl5wj] {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    z-index: 10;
    animation: badgePulse-b-crt5ztl5wj 2s ease-in-out infinite;
}

.branch-profile-badge .rz-icon[b-crt5ztl5wj] {
    font-size: 1.5rem;
}

@keyframes badgePulse-b-crt5ztl5wj {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(102, 126, 234, 0);
    }
}

/* Info Section with Icons */
.branch-info-section[b-crt5ztl5wj] {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.branch-info-item[b-crt5ztl5wj] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #fdfbfb 0%, #f8f9fa 100%);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.branch-info-item:last-child[b-crt5ztl5wj] {
    margin-bottom: 0;
}

.branch-info-item:hover[b-crt5ztl5wj] {
    transform: translateX(8px);
    border-left-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
}

.branch-info-icon-wrapper[b-crt5ztl5wj] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    margin-right: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
}

.branch-info-icon[b-crt5ztl5wj] {
    font-size: 1.5rem !important;
}

.branch-info-item:hover .branch-info-icon-wrapper[b-crt5ztl5wj] {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.branch-info-label[b-crt5ztl5wj] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.branch-info-value[b-crt5ztl5wj] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    word-break: break-word;
}

.branch-contact-link[b-crt5ztl5wj] {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.branch-contact-link[b-crt5ztl5wj]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.branch-contact-link:hover[b-crt5ztl5wj] {
    color: #764ba2;
}

.branch-contact-link:hover[b-crt5ztl5wj]::after {
    width: 100%;
}

/* Description Card */
.branch-description-card[b-crt5ztl5wj] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 2rem;
    border-left: 5px solid #667eea;
    transition: all 0.4s ease;
    position: relative;
    animation: slideInUp-b-crt5ztl5wj 0.8s ease;
}

.branch-description-card[b-crt5ztl5wj]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px 20px 0 0;
}

.branch-description-card:hover[b-crt5ztl5wj] {
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.2);
    transform: translateY(-3px);
}

.branch-description-content[b-crt5ztl5wj] {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #444;
}

/* Section Title */
.branch-section-title[b-crt5ztl5wj] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #667eea;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .branch-profile-image-container[b-crt5ztl5wj] {
        width: 170px;
        height: 170px;
        margin-bottom: 1rem;
    }

    .branch-info-icon-wrapper[b-crt5ztl5wj] {
        min-width: 45px;
        height: 45px;
    }

    .branch-info-icon[b-crt5ztl5wj] {
        font-size: 1.3rem !important;
    }

    .branch-info-value[b-crt5ztl5wj] {
        font-size: 1rem;
    }

    .branch-section-title[b-crt5ztl5wj] {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .branch-profile-image-container[b-crt5ztl5wj] {
        width: 150px;
        height: 150px;
    }

    .branch-profile-badge[b-crt5ztl5wj] {
        width: 45px;
        height: 45px;
    }

    .branch-profile-badge .rz-icon[b-crt5ztl5wj] {
        font-size: 1.3rem;
    }

    .branch-section-title[b-crt5ztl5wj] {
        font-size: 1.3rem;
    }

    .branch-description-card[b-crt5ztl5wj],
    .branch-leader-card[b-crt5ztl5wj] {
        padding: 1.5rem;
    }

    .branch-card-header[b-crt5ztl5wj] {
        padding: 1rem 1.5rem 0.5rem;
    }

    .branch-info-item[b-crt5ztl5wj] {
        padding: 0.875rem;
    }
}

@media (max-width: 576px) {
    .branch-profile-image-container[b-crt5ztl5wj] {
        width: 130px;
        height: 130px;
    }

    .branch-info-icon-wrapper[b-crt5ztl5wj] {
        min-width: 40px;
        height: 40px;
    }

    .branch-info-icon[b-crt5ztl5wj] {
        font-size: 1.2rem !important;
    }
}
/* /Components/Pages/Information/GYIK/EditGyik.razor.rz.scp.css */
/* EditGyik Page Modern Styling */

/* Hero Section */
.edit-gyik-hero-section[b-uiwxav53y5] {
    background: linear-gradient(135deg, #5E0000 0%, #8B4513 100%);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 40px rgba(94, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.edit-gyik-hero-section[b-uiwxav53y5]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-b-uiwxav53y5 6s ease-in-out infinite;
}

@keyframes float-b-uiwxav53y5 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.edit-gyik-hero-content[b-uiwxav53y5] {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: slideInDown-b-uiwxav53y5 0.8s ease;
}

@keyframes slideInDown-b-uiwxav53y5 {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.edit-gyik-hero-icon[b-uiwxav53y5] {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.edit-gyik-hero-icon .rz-icon[b-uiwxav53y5] {
    font-size: 2.5rem;
    color: white;
}

.edit-gyik-hero-title[b-uiwxav53y5] {
    color: white !important;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    font-size: 2rem;
}

.edit-gyik-hero-subtitle[b-uiwxav53y5] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 500;
}

/* Main Container */
.edit-gyik-main-container[b-uiwxav53y5] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* Form Card */
.edit-gyik-form-card[b-uiwxav53y5] {
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
    animation: slideInUp-b-uiwxav53y5 0.8s ease;
}

@keyframes slideInUp-b-uiwxav53y5 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Sections */
.edit-gyik-form-section[b-uiwxav53y5] {
    padding: 2.5rem;
    border-bottom: 1px solid #e9ecef;
}

.edit-gyik-form-section:last-of-type[b-uiwxav53y5] {
    border-bottom: none;
}

.edit-gyik-section-header[b-uiwxav53y5] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.edit-gyik-section-icon[b-uiwxav53y5] {
    font-size: 1.75rem;
    color: #8B4513;
}

.edit-gyik-section-title[b-uiwxav53y5] {
    margin: 0;
    color: #333;
    font-weight: 700;
}

/* Input Styling */
.edit-gyik-input[b-uiwxav53y5] {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding: 1rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.edit-gyik-input:focus[b-uiwxav53y5] {
    border-color: #8B4513;
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.1);
    outline: none;
}

/* Editor Wrapper */
.edit-gyik-editor-wrapper[b-uiwxav53y5] {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.edit-gyik-editor-wrapper :global(.rz-html-editor)[b-uiwxav53y5] {
    border: 2px solid #e9ecef;
    border-radius: 12px;
}

.edit-gyik-editor-wrapper :global(.rz-html-editor:focus-within)[b-uiwxav53y5] {
    border-color: #8B4513;
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.1);
}

/* Actions Section */
.edit-gyik-actions[b-uiwxav53y5] {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8d5c4 100%);
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.edit-gyik-save-btn[b-uiwxav53y5],
.edit-gyik-cancel-btn[b-uiwxav53y5] {
    border-radius: 12px;
    padding: 1rem 3rem;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 180px;
}

.edit-gyik-save-btn:hover[b-uiwxav53y5],
.edit-gyik-cancel-btn:hover[b-uiwxav53y5] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Validation */
.edit-gyik-validation[b-uiwxav53y5] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
    font-weight: 500;
}

.edit-gyik-validation-summary[b-uiwxav53y5] {
    margin-top: 1rem;
}

.edit-gyik-validation-summary :global(.validation-summary-errors)[b-uiwxav53y5] {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border: 2px solid #dc3545;
    border-radius: 16px;
    padding: 1.5rem;
    color: #dc3545;
}

.edit-gyik-validation-summary :global(.validation-summary-errors ul)[b-uiwxav53y5] {
    margin: 0;
    padding-left: 1.5rem;
}

.edit-gyik-validation-summary :global(.validation-summary-errors li)[b-uiwxav53y5] {
    margin-bottom: 0.5rem;
}

/* Loading State */
.edit-gyik-loading[b-uiwxav53y5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .edit-gyik-hero-section[b-uiwxav53y5] {
        padding: 2.5rem 1.5rem;
    }

    .edit-gyik-hero-title[b-uiwxav53y5] {
        font-size: 1.75rem;
    }

    .edit-gyik-hero-icon[b-uiwxav53y5] {
        width: 70px;
        height: 70px;
    }

    .edit-gyik-hero-icon .rz-icon[b-uiwxav53y5] {
        font-size: 2rem;
    }

    .edit-gyik-form-section[b-uiwxav53y5] {
        padding: 2rem;
    }

    .edit-gyik-actions[b-uiwxav53y5] {
        padding: 2rem;
        flex-direction: column;
    }

    .edit-gyik-save-btn[b-uiwxav53y5],
    .edit-gyik-cancel-btn[b-uiwxav53y5] {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .edit-gyik-hero-section[b-uiwxav53y5] {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
        border-radius: 0 0 20px 20px;
    }

    .edit-gyik-hero-title[b-uiwxav53y5] {
        font-size: 1.5rem;
    }

    .edit-gyik-hero-subtitle[b-uiwxav53y5] {
        font-size: 0.9rem;
    }

    .edit-gyik-hero-icon[b-uiwxav53y5] {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .edit-gyik-hero-icon .rz-icon[b-uiwxav53y5] {
        font-size: 1.75rem;
    }

    .edit-gyik-main-container[b-uiwxav53y5] {
        padding: 0 1rem 2rem;
    }

    .edit-gyik-form-card[b-uiwxav53y5] {
        border-radius: 16px;
    }

    .edit-gyik-form-section[b-uiwxav53y5] {
        padding: 1.5rem;
    }

    .edit-gyik-section-header[b-uiwxav53y5] {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .edit-gyik-section-icon[b-uiwxav53y5] {
        font-size: 1.5rem;
    }

    .edit-gyik-actions[b-uiwxav53y5] {
        padding: 1.5rem;
    }

    .edit-gyik-save-btn[b-uiwxav53y5],
    .edit-gyik-cancel-btn[b-uiwxav53y5] {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: unset;
    }
}

@media (max-width: 576px) {
    .edit-gyik-hero-section[b-uiwxav53y5] {
        padding: 1.5rem 0.75rem;
    }

    .edit-gyik-hero-title[b-uiwxav53y5] {
        font-size: 1.25rem;
    }

    .edit-gyik-hero-icon[b-uiwxav53y5] {
        width: 50px;
        height: 50px;
    }

    .edit-gyik-hero-icon .rz-icon[b-uiwxav53y5] {
        font-size: 1.5rem;
    }

    .edit-gyik-form-section[b-uiwxav53y5] {
        padding: 1.25rem;
    }

    .edit-gyik-actions[b-uiwxav53y5] {
        padding: 1.25rem;
    }

    .edit-gyik-input[b-uiwxav53y5] {
        padding: 0.875rem;
        font-size: 1rem;
    }
}
/* /Components/Pages/Information/GYIK/Gyik.razor.rz.scp.css */
/* GYIK Page Modern Styling - Component-specific styles with Radzen */

/* Loading State */
.gyik-loading-container[b-9clvfttqag] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    min-height: 60vh;
}

.gyik-loading-spinner[b-9clvfttqag] {
    margin-bottom: 1.5rem;
}

.gyik-loading-text[b-9clvfttqag] {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

/* Hero Section */
.gyik-hero-section[b-9clvfttqag] {
    background: linear-gradient(135deg, #5E0000 0%, #8B4513 100%);
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 40px rgba(94, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.gyik-hero-section[b-9clvfttqag]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-b-9clvfttqag 6s ease-in-out infinite;
}

.gyik-hero-section[b-9clvfttqag]::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float-b-9clvfttqag 8s ease-in-out infinite reverse;
}

@keyframes float-b-9clvfttqag {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.gyik-hero-content[b-9clvfttqag] {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: slideInDown-b-9clvfttqag 0.8s ease;
}

@keyframes slideInDown-b-9clvfttqag {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gyik-hero-icon[b-9clvfttqag] {
    margin: 0 auto 1.5rem;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: iconPulse-b-9clvfttqag 2s ease-in-out infinite;
}

.gyik-hero-icon .rz-icon[b-9clvfttqag] {
    font-size: 3.5rem;
    color: white;
}

@keyframes iconPulse-b-9clvfttqag {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }
}

.gyik-hero-title[b-9clvfttqag] {
    color: white !important;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    font-size: 2.5rem;
}

.gyik-hero-subtitle[b-9clvfttqag] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Main Container */
.gyik-main-container[b-9clvfttqag] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* Admin Section */
.gyik-admin-section[b-9clvfttqag] {
    margin-bottom: 2rem;
    text-align: right;
    animation: slideInRight-b-9clvfttqag 0.6s ease;
}

@keyframes slideInRight-b-9clvfttqag {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gyik-edit-btn[b-9clvfttqag] {
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
    transition: all 0.3s ease;
}

.gyik-edit-btn:hover[b-9clvfttqag] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* Content Card */
.gyik-content-card[b-9clvfttqag] {
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    animation: slideInUp-b-9clvfttqag 0.8s ease;
}

@keyframes slideInUp-b-9clvfttqag {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gyik-content-card:hover[b-9clvfttqag] {
    box-shadow: 0 12px 48px rgba(139, 69, 19, 0.15);
    transform: translateY(-5px);
}

.gyik-content-header[b-9clvfttqag] {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8d5c4 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 3px solid #8B4513;
}

.gyik-content-icon[b-9clvfttqag] {
    font-size: 2.5rem;
    color: #8B4513;
    animation: rotate-b-9clvfttqag 3s ease-in-out infinite;
}

@keyframes rotate-b-9clvfttqag {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.gyik-content-header-title[b-9clvfttqag] {
    margin: 0;
    color: #333;
    font-weight: 700;
}

.gyik-content-body[b-9clvfttqag] {
    padding: 2.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #444;
}

/* Style content within the body */
.gyik-content-body :global(h1)[b-9clvfttqag],
.gyik-content-body :global(h2)[b-9clvfttqag],
.gyik-content-body :global(h3)[b-9clvfttqag],
.gyik-content-body :global(h4)[b-9clvfttqag] {
    color: #5E0000;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.gyik-content-body :global(h1)[b-9clvfttqag] {
    font-size: 2rem;
    border-bottom: 3px solid #8B4513;
    padding-bottom: 0.5rem;
}

.gyik-content-body :global(h2)[b-9clvfttqag] {
    font-size: 1.75rem;
}

.gyik-content-body :global(h3)[b-9clvfttqag] {
    font-size: 1.5rem;
}

.gyik-content-body :global(h4)[b-9clvfttqag] {
    font-size: 1.25rem;
}

.gyik-content-body :global(p)[b-9clvfttqag] {
    margin-bottom: 1.5rem;
}

.gyik-content-body :global(ul)[b-9clvfttqag],
.gyik-content-body :global(ol)[b-9clvfttqag] {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.gyik-content-body :global(li)[b-9clvfttqag] {
    margin-bottom: 0.75rem;
    position: relative;
}

.gyik-content-body :global(ul li)[b-9clvfttqag]::marker {
    color: #8B4513;
}

.gyik-content-body :global(a)[b-9clvfttqag] {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.gyik-content-body :global(a::after)[b-9clvfttqag] {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B4513 0%, #5E0000 100%);
    transition: width 0.3s ease;
}

.gyik-content-body :global(a:hover)[b-9clvfttqag] {
    color: #5E0000;
}

.gyik-content-body :global(a:hover::after)[b-9clvfttqag] {
    width: 100%;
}

.gyik-content-body :global(strong)[b-9clvfttqag] {
    color: #333;
    font-weight: 700;
}

.gyik-content-body :global(blockquote)[b-9clvfttqag] {
    border-left: 4px solid #8B4513;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

/* Help Section */
.gyik-help-section[b-9clvfttqag] {
    animation: slideInUp-b-9clvfttqag 1s ease;
}

.gyik-help-card[b-9clvfttqag] {
    background: linear-gradient(135deg, #5E0000 0%, #8B4513 100%);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 32px rgba(94, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gyik-help-card[b-9clvfttqag]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.gyik-help-card:hover[b-9clvfttqag] {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(94, 0, 0, 0.4);
}

.gyik-help-icon-wrapper[b-9clvfttqag] {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.gyik-help-icon[b-9clvfttqag] {
    font-size: 2.5rem;
    color: white;
}

.gyik-help-content[b-9clvfttqag] {
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.gyik-help-title[b-9clvfttqag] {
    color: white;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.gyik-help-text[b-9clvfttqag] {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.gyik-help-btn[b-9clvfttqag] {
    flex-shrink: 0;
    border-radius: 12px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    background: white !important;
    color: #5E0000 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.gyik-help-btn:hover[b-9clvfttqag] {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .gyik-hero-section[b-9clvfttqag] {
        padding: 3rem 1.5rem;
    }

    .gyik-hero-title[b-9clvfttqag] {
        font-size: 2rem;
    }

    .gyik-hero-icon[b-9clvfttqag] {
        width: 80px;
        height: 80px;
    }

    .gyik-hero-icon .rz-icon[b-9clvfttqag] {
        font-size: 3rem;
    }

    .gyik-content-body[b-9clvfttqag] {
        padding: 2rem;
    }

    .gyik-help-card[b-9clvfttqag] {
        flex-direction: column;
        text-align: center;
    }

    .gyik-help-icon-wrapper[b-9clvfttqag] {
        width: 70px;
        height: 70px;
    }

    .gyik-help-icon[b-9clvfttqag] {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .gyik-hero-section[b-9clvfttqag] {
        padding: 2.5rem 1rem;
        margin-bottom: 2rem;
        border-radius: 0 0 20px 20px;
    }

    .gyik-hero-title[b-9clvfttqag] {
        font-size: 1.75rem;
    }

    .gyik-hero-subtitle[b-9clvfttqag] {
        font-size: 1rem;
    }

    .gyik-hero-icon[b-9clvfttqag] {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .gyik-hero-icon .rz-icon[b-9clvfttqag] {
        font-size: 2.5rem;
    }

    .gyik-main-container[b-9clvfttqag] {
        padding: 0 1rem 2rem;
    }

    .gyik-content-card[b-9clvfttqag] {
        border-radius: 16px;
    }

    .gyik-content-header[b-9clvfttqag] {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .gyik-content-icon[b-9clvfttqag] {
        font-size: 2rem;
    }

    .gyik-content-body[b-9clvfttqag] {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .gyik-content-body :global(h1)[b-9clvfttqag] {
        font-size: 1.5rem;
    }

    .gyik-content-body :global(h2)[b-9clvfttqag] {
        font-size: 1.35rem;
    }

    .gyik-content-body :global(h3)[b-9clvfttqag] {
        font-size: 1.25rem;
    }

    .gyik-help-card[b-9clvfttqag] {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .gyik-help-icon-wrapper[b-9clvfttqag] {
        width: 60px;
        height: 60px;
    }

    .gyik-help-icon[b-9clvfttqag] {
        font-size: 1.75rem;
    }

    .gyik-help-btn[b-9clvfttqag] {
        width: 100%;
    }

    .gyik-admin-section[b-9clvfttqag] {
        text-align: center;
    }

    .gyik-edit-btn[b-9clvfttqag] {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .gyik-hero-section[b-9clvfttqag] {
        padding: 2rem 0.75rem;
    }

    .gyik-hero-title[b-9clvfttqag] {
        font-size: 1.5rem;
    }

    .gyik-hero-subtitle[b-9clvfttqag] {
        font-size: 0.9rem;
    }

    .gyik-hero-icon[b-9clvfttqag] {
        width: 60px;
        height: 60px;
    }

    .gyik-hero-icon .rz-icon[b-9clvfttqag] {
        font-size: 2rem;
    }

    .gyik-content-body[b-9clvfttqag] {
        padding: 1.25rem;
    }

    .gyik-help-card[b-9clvfttqag] {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
}
/* /Components/Pages/Information/Honored/Honored.razor.rz.scp.css */
/* Honored Page - Component Scoped Styles */

/* Add Honored Section */
.add-honored-section[b-wolhd8gzvj] {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.add-honored-button[b-wolhd8gzvj] {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    border: none !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333 !important;
}

.add-honored-button:hover[b-wolhd8gzvj] {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6) !important;
}

/* Loading State */
.loading-container[b-wolhd8gzvj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.loading-spinner[b-wolhd8gzvj] {
    margin-bottom: 1.5rem;
}

.loading-text[b-wolhd8gzvj] {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

/* Honored Category Card */
.honored-category-card[b-wolhd8gzvj] {
    background:  linear-gradient(to bottom right, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-bottom: 2.5rem;
    overflow: hidden;
    border: none;
    transition: all 0.4s ease;
    position: relative;
    animation: slideInUp-b-wolhd8gzvj 0.6s ease;
}

.honored-category-card[b-wolhd8gzvj]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
}

.honored-category-card:hover[b-wolhd8gzvj] {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.25);
}

@keyframes slideInUp-b-wolhd8gzvj {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Header */
.category-header[b-wolhd8gzvj] {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.category-header[b-wolhd8gzvj]::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
    transform: skewX(-20deg);
}

.category-icon[b-wolhd8gzvj] {
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.category-title[b-wolhd8gzvj] {
    color: #333 !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    margin: 0 !important;
    flex-grow: 1;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.category-badge[b-wolhd8gzvj] {
    background: rgba(255, 255, 255, 0.35);
    color: #333;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Honored Grid */
.honored-grid[b-wolhd8gzvj] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

/* Honored Card */
.honored-card[b-wolhd8gzvj] {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

.honored-card:hover[b-wolhd8gzvj] {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.honored-card-icon[b-wolhd8gzvj] {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE8B3 100%);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFA500;
    min-height: 100px;
}

.honored-card-icon i[b-wolhd8gzvj] {
    transition: all 0.3s ease;
}

.honored-card:hover .honored-card-icon i[b-wolhd8gzvj] {
    transform: scale(1.1) rotate(5deg);
}

.honored-card-content[b-wolhd8gzvj] {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honored-name[b-wolhd8gzvj] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
    text-align: center;
}

.honored-card-actions[b-wolhd8gzvj] {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    display: flex;
    gap: 0.75rem;
    border-top: 1px solid #e0e0e0;
}

.view-button[b-wolhd8gzvj] {
    flex-grow: 1;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    color: #333 !important;
}

.view-button:hover[b-wolhd8gzvj] {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5) !important;
}

.delete-button[b-wolhd8gzvj] {
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.delete-button:hover[b-wolhd8gzvj] {
    transform: scale(1.1) !important;
}

/* Empty Category State */
.empty-category[b-wolhd8gzvj] {
    padding: 4rem 2rem;
    text-align: center;
}

.empty-icon[b-wolhd8gzvj] {
    color: #ccc;
    margin-bottom: 1rem;
}

.empty-text[b-wolhd8gzvj] {
    font-size: 1.1rem;
    color: #999;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .honored-grid[b-wolhd8gzvj] {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .category-header[b-wolhd8gzvj] {
        padding: 1.25rem 1.5rem;
        flex-wrap: wrap;
    }

    .category-title[b-wolhd8gzvj] {
        font-size: 1.25rem !important;
        width: 100%;
        margin-bottom: 0.5rem !important;
    }

    .category-badge[b-wolhd8gzvj] {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .add-honored-button[b-wolhd8gzvj] {
        width: 100%;
        padding: 0.875rem 2rem !important;
        font-size: 1rem !important;
    }

    .honored-card-actions[b-wolhd8gzvj] {
        flex-direction: column;
    }

    .view-button[b-wolhd8gzvj] {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .category-icon[b-wolhd8gzvj] {
        width: 40px;
        height: 40px;
    }

    .honored-card-icon[b-wolhd8gzvj] {
        padding: 1.25rem;
        min-height: 80px;
    }
}
