/* Golden Ace Casino - Professional Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0F1419;
    --bg-secondary: #16181D;
    --bg-card: #1A1D24;
    --bg-hover: #1F2229;
    --gold: #FFC107;
    --gold-dark: #F59E0B;
    --blue: #2196F3;
    --blue-dark: #1976D2;
    --green: #4CAF50;
    --text-primary: #FFFFFF;
    --text-secondary: #8B92A0;
    --text-tertiary: #5A6170;
    --border: #2A2D35;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-small {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #15191F;
    border-bottom: 1px solid #1F2329;
    z-index: 1000;
    padding: 0 3rem;
}

.header-container {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: #8B92A0;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    position: relative;
}

.nav-link svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 193, 7, 0.05);
}

.nav-link:hover svg {
    transform: translateY(-2px);
    stroke: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alt-login-btn {
    background: transparent;
    border: 1px solid #2A2E36;
    color: var(--text-secondary);
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.alt-login-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #3A3E46;
    color: var(--text-primary);
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    border: none;
    color: #FFFFFF;
    padding: 0.625rem 1.75rem;
    border-radius: 8px;
    font-size: 0.813rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25);
}

.login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
    background: linear-gradient(135deg, #16A34A, #22C55E);
}

/* Hero Slider - Updated */
.hero-slider {
    margin-top: 65px;
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #0a3d2e 0%, #0F1419 50%, #0a3d2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.hero-slides-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.hero-slides {
    position: relative;
    height: 400px;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

.slide-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.slide-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.slide-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 0.938rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
}

.slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);
}

.slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 450px;
}

.slide-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.slider-btn.prev {
    left: -60px;
}

.slider-btn.next {
    right: -60px;
}

.slider-dots {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

/* Live Bets */
.live-bets {
    padding: 2rem 0;
    background: var(--bg-primary);
}

.live-bets-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.live-bets-header h3 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.bets-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
}

.bets-scroll::-webkit-scrollbar {
    height: 6px;
}

.bets-scroll::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

.bet-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    min-width: 300px;
    transition: transform 0.2s;
}

.bet-item:hover {
    transform: translateY(-2px);
}

.bet-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.bet-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.bet-user {
    font-weight: 600;
    font-size: 0.938rem;
}

.bet-game {
    font-size: 0.813rem;
    color: var(--text-secondary);
}

.bet-amount {
    font-weight: 700;
    font-size: 1rem;
}

.bet-amount.win {
    color: var(--green);
}

/* Game Category Sections - New */
.game-category-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.game-category-section.dark {
    background: var(--bg-secondary);
}

.category-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.category-info h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    text-transform: uppercase;
}

.category-description {
    padding-top: 1rem;
}

.category-description p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.games-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.game-card-large {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.game-card-large:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.game-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card-large:hover .game-thumbnail img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card-large:hover .game-overlay {
    opacity: 1;
}

.game-players {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.play-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.play-btn:hover {
    transform: scale(1.05);
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.game-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Section Header */
.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Trading Section */
.trading-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1A1D24 0%, #0F1419 100%);
    position: relative;
    overflow: hidden;
}

.trading-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trading-tag {
    display: inline-block;
    background: rgba(255, 193, 7, 0.1);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.trading-text h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.trading-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.trading-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.trading-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-primary);
}

.trading-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.25rem;
}

.trading-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 0.938rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
}

.trading-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);
}

.trading-visual img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
}

/* Rewards Section */
.rewards-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.reward-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.reward-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.reward-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.reward-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.reward-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section - Updated */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.faq-list {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    user-select: none;
}

.faq-q h4 {
    font-size: 1rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-a {
    max-height: 300px;
    padding: 0 1.75rem 1.5rem;
}

.faq-a p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h5 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-methods span {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
}

.payment-icons img {
    height: 24px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.payment-icons img:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1400px) {
    .slider-btn.prev {
        left: 1rem;
    }
    
    .slider-btn.next {
        right: 1rem;
    }
}

@media (max-width: 1200px) {
    .category-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .games-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-list {
        grid-template-columns: 1fr;
    }
    
    .trading-content {
        grid-template-columns: 1fr;
    }
    
    .trading-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .hero-slider {
        min-height: 400px;
        padding: 3rem 0;
    }
    
    .hero-slides {
        height: 350px;
    }

    .hero-slide {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 2rem;
    }

    .slide-content {
        max-width: 100%;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }

    .slide-image {
        max-width: 300px;
    }

    .slider-dots {
        bottom: -2.5rem;
    }
    
    .games-grid-large {
        grid-template-columns: 1fr;
    }
    
    .category-info h2 {
        font-size: 2.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header {
        padding: 0 1rem;
    }
    
    .container,
    .container-small {
        padding: 0 1rem;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .category-info h2 {
        font-size: 2rem;
    }
    
    .category-description p {
        font-size: 1rem;
    }
    
    .trading-text h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
/* ============================================ */
/* GAMES DROPDOWN NAVIGATION STYLES */
/* ============================================ */

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: #8B92A0;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-dropdown-toggle svg {
    transition: all 0.3s;
}

.nav-dropdown-toggle .chev {
    width: 12px;
    height: 12px;
    margin-top: -4px;
    opacity: 0.7;
}

.nav-dropdown-toggle:hover {
    color: var(--text-primary);
    background: rgba(255, 193, 7, 0.05);
}

.nav-dropdown-toggle:hover svg:first-of-type {
    transform: translateY(-2px);
    stroke: var(--gold);
}

.nav-dropdown-toggle[aria-expanded="true"] {
    color: var(--text-primary);
    background: rgba(255, 193, 7, 0.08);
}

.nav-dropdown-toggle[aria-expanded="true"] .chev {
    transform: rotate(180deg);
    stroke: var(--gold);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: #15191F;
    border: 1px solid #2A2D35;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 8px;
    display: none;
    z-index: 1001;
    animation: dropdownFadeIn 0.2s ease;
}

.nav-dropdown-menu.show {
    display: block;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: #B8BFC8;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

.dropdown-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #8B92A0;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: rgba(255, 193, 7, 0.1);
    color: #FFFFFF;
}

.dropdown-item:hover svg {
    stroke: #FFC107;
    transform: scale(1.1);
}

.dropdown-item:active {
    transform: scale(0.98);
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .nav-dropdown-menu {
        min-width: 180px;
    }
    
    .dropdown-item {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .dropdown-item svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .nav-dropdown-toggle {
        padding: 0.625rem 1rem;
        font-size: 0.688rem;
    }
    
    .nav-dropdown-toggle svg:first-of-type {
        width: 20px;
        height: 20px;
    }
    
    .nav-dropdown-menu {
        min-width: 160px;
        left: 0;
        transform: translateX(0);
    }
    
    @keyframes dropdownFadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .dropdown-item {
        padding: 8px 10px;
        font-size: 12px;
        gap: 10px;
    }
    
    .dropdown-item svg {
        width: 16px;
        height: 16px;
    }
}