/* Golf Green Professional Theme - Complete Stylesheet */

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7f3;
    color: #333;
    line-height: 1.6;
}
/* ============================================
   SITE HEADER STYLES
   ============================================ */
.site-header {
    background: linear-gradient(135deg, #1e6b3e 0%, #2d8f5a 100%);
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: relative;
}

/* Optional overlay for when background image is added */
.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 107, 62, 0.7);
    z-index: 1;
}

.site-header.has-background {
    background-image: url('path-to-your-image.jpg');
}

.site-header > * {
    position: relative;
    z-index: 2;
}

.header-logo {
    font-size: 2.5em;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header-user-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-user-info {
    background: rgba(255,255,255,0.2);
    padding: 12px 20px;
    border-radius: 30px;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.header-user-name {
    color: white;
    font-weight: 600;
    font-size: 1.1em;
}

.header-admin-badge {
    background: #ffd700;
    color: #1e6b3e;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
}

/* Keep existing top-nav styles but adjust */
.top-nav {
    background: #f8f9fa;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-bottom: 2px solid #e0e0e0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}

/* Update nav menu to center it */
.nav-menu {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #333;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #1e6b3e;
    background: #f0f4f0;
    border-bottom-color: #1e6b3e;
}

.nav-link.active {
    color: #1e6b3e;
    background: #e8f5e8;
    border-bottom-color: #1e6b3e;
}

/* Dropdown styles */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle::after {
    content: "?";
    font-size: 0.7em;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 0;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #f8faf7;
    color: #1e6b3e;
}

.dropdown-item.active {
    background: #e8f5e8;
    color: #1e6b3e;
    font-weight: 600;
}

@media (max-width: 768px) {
    .site-header {
        height: 150px;
        padding: 0 20px;
    }
    
    .header-logo {
        font-size: 1.8em;
    }
    
    .header-user-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-menu {
        display: none;
    }
}
/* ============================================
   NAVIGATION STYLES
   ============================================ */
.top-nav {
    background: linear-gradient(135deg, #1e6b3e 0%, #2d8f5a 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    color: white;
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}



.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 20px 0;
    display: block;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: white;
    border-bottom-color: #ffd700;
}

.nav-link.active {
    color: white;
    border-bottom-color: #ffd700;
}

.user-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.user-info-compact {
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-name {
    color: white;
    font-weight: 500;
}

.admin-indicator {
    background: #ffd700;
    color: #1e6b3e;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 600;
}

/* ============================================
   MAIN CONTENT STYLES
   ============================================ */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px;
}

.container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #1e6b3e;
}

h1, .page-title {
    font-size: 2em;
    color: #1e6b3e;
    font-weight: 600;
}

h2 {
    font-size: 1.5em;
    color: #1e6b3e;
    font-weight: 600;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.2em;
    color: #2d8f5a;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #1e6b3e;
    color: white;
}

.btn-primary:hover {
    background: #165230;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 107, 62, 0.3);
}

.btn-success {
    background: #2d8f5a;
    color: white;
}

.btn-success:hover {
    background: #237544;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 143, 90, 0.3);
}

.btn-warning {
    background: #ffd700;
    color: #1e6b3e;
}

.btn-warning:hover {
    background: #e6c200;
    transform: translateY(-1px);
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
    transform: translateY(-1px);
}

.btn-outline {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.3);
}

.btn-small {
    padding: 6px 14px;
    font-size: 0.85em;
}

.btn:disabled {
    background: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ============================================
   TAB STYLES
   ============================================ */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.tab {
    padding: 15px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab:hover {
    color: #1e6b3e;
}

.tab.active {
    color: #1e6b3e;
    border-bottom-color: #1e6b3e;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-group {
    margin-bottom: 25px;
}

.form-group label,
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95em;
}

.form-group input,
.form-group select,
.form-group textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #1e6b3e;
    box-shadow: 0 0 0 3px rgba(30, 107, 62, 0.1);
}

.search-box {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95em;
    width: 300px;
    max-width: 100%;
}

.search-box:focus {
    border-color: #1e6b3e;
    outline: none;
}

/* ============================================
   CARD STYLES
   ============================================ */
.tournament-card,
.member-card,
.stat-card {
    background: #f8faf7;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 1px solid #e0e8e0;
    transition: all 0.3s ease;
}

.tournament-card:hover,
.member-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 107, 62, 0.15);
    border-color: #2d8f5a;
}

/* ============================================
   STATUS BADGES
   ============================================ */
.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    display: inline-block;
}

.status-setup {
    background: #fff3cd;
    color: #856404;
}

.status-open {
    background: #d4edda;
    color: #155724;
}

.status-closed {
    background: #f8d7da;
    color: #721c24;
}

.status-full {
    background: #f1c0c7;
    color: #721c24;
}

.status-active {
    background: #cce5ff;
    color: #004085;
}

.status-completed {
    background: #e2e3e5;
    color: #6c757d;
}

.status-registered {
    background: #c6f6d5;
    color: #22543d;
}

.status-waitlist {
    background: #fef5e7;
    color: #744210;
}

.status-available {
    background: #e6fffa;
    color: #234e52;
}

.format-badge {
    background: #d4edda;
    color: #1e6b3e;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
}

.handicap-badge {
    background: #f0f4f0;
    color: #1e6b3e;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}


/* ============================================
   TABLE STYLES
   ============================================ */
.roster-table,
.leaderboard-table,
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.roster-table th,
.leaderboard-table th,
table th {
    background: #1e6b3e;
    color: white;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
}

.roster-table td,
.leaderboard-table td,
table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e8ede8;
}

.roster-table tr:hover,
.leaderboard-table tr:hover,
table tbody tr:hover {
    background: #f8faf7;
}

.roster-table tr:last-child td,
table tbody tr:last-child td {
    border-bottom: none;
}

.scorecard-table th,
.scorecard-table td {
    border: 1px solid #333;
    padding: 4px 2px;  /* Reduced from 8px 4px */
    text-align: center;
    font-size: 9px;  /* Reduced from 11px */
}
.scorecard-table sup {
    font-size: 8px;
    vertical-align: super;
    line-height: 0;
}

.scorecard-table .score-cell {
    position: relative;
}

.scorecard-table .stroke-indicator {
    position: absolute;
    top: 1px;
    right: 2px;
    font-size: 7px;
    font-weight: bold;
    color: #666;
}


/* ============================================
   INFO BOXES
   ============================================ */
.tournament-info,
.course-info {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #1e6b3e;
}

.registration-info {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 4px solid #2d8f5a;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.info {
    color: #0c5460;
    padding: 15px;
    background: #d1ecf1;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #17a2b8;
}

.success {
    color: #155724;
    padding: 15px;
    background: #d4edda;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #28a745;
}

.error,
.incomplete-warning {
    color: #721c24;
    padding: 15px;
    background: #f8d7da;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #dc3545;
}

.warning {
    color: #856404;
    padding: 15px;
    background: #fff3cd;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #ffc107;
}

/* ============================================
   STATISTICS CARDS
   ============================================ */
.roster-stats,
.results-summary,
.members-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #f8faf7;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #1e6b3e;
}

.stat-card.winner {
    border-left-color: #ffd700;
    background: #fffef0;
}

.stat-number {
    font-size: 2.2em;
    font-weight: 700;
    color: #1e6b3e;
}

.stat-label {
    color: #666;
    font-size: 0.9em;
    margin-top: 8px;
    font-weight: 500;
}

.winner-name {
    font-size: 1.2em;
    font-weight: 600;
    color: #1e6b3e;
    margin-top: 10px;
}

/* ============================================
   LEADERBOARD STYLES
   ============================================ */
.leaderboard {
    background: white;
    border: 1px solid #e0e8e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.leaderboard-header {
    background: #1e6b3e;
    color: white;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 1.1em;
}

.position {
    font-weight: 600;
    text-align: center;
    width: 60px;
}

.position.winner {
    background: #ffd700;
    color: #1e6b3e;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 700;
}

.position.second {
    background: #c0c0c0;
    color: #333;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 700;
}

.position.third {
    background: #cd7f32;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 700;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hidden {
    display: none;
}

.loading {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-results,
.no-members,
.no-tournaments {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    background: #f8faf7;
    border-radius: 10px;
    border: 2px dashed #d0dfd0;
}

.group-badge {
    background: #1e6b3e;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: 600;
}

.tee-time {
    color: #2d8f5a;
    font-weight: 600;
}

.player-name {
    font-weight: 600;
    color: #333;
}

/* ============================================
   LOGIN PAGE STYLES
   ============================================ */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.login-card {
    background: white;
    border: 1px solid #e0e8e0;
    border-radius: 12px;
    padding: 50px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(30, 107, 62, 0.1);
}

.login-title {
    font-size: 2em;
    font-weight: 600;
    color: #1e6b3e;
    margin-bottom: 15px;
}

.login-subtitle {
    color: #666;
    margin-bottom: 30px;
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-bar {
    background: #e9ecef;
    border-radius: 10px;
    height: 24px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-fill {
    background: linear-gradient(135deg, #1e6b3e 0%, #2d8f5a 100%);
    height: 100%;
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.85em;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .main-content {
        padding: 25px 20px;
    }
    
    .container {
        padding: 25px;
    }
    
    h1, .page-title {
        font-size: 1.6em;
    }
    
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .tabs {
        flex-wrap: wrap;
    }
    
    .tab {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    
    .search-box {
        width: 100%;
    }
    
    .roster-stats,
    .results-summary,
    .members-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    table {
        font-size: 0.9em;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.9em;
    }
}

@media print {
    .top-nav,
    .header .btn,
    .tabs,
    .btn,
    .search-box,
    .filters {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    .container {
        box-shadow: none;
        padding: 0;
    }
}
/* ============================================
   DASHBOARD & NAVIGATION CARD STYLES
   ============================================ */
.page-header {
    margin-bottom: 40px;
}

.page-title {
    font-size: 2em;
    color: #1e6b3e;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-subtitle {
    color: #666;
    font-size: 1.1em;
    line-height: 1.5;
}

.section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.8em;
    color: #1e6b3e;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #1e6b3e;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.nav-card {
    background: white;
    border: 2px solid #e0e8e0;
    border-radius: 12px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 107, 62, 0.15);
    border-color: #2d8f5a;
}

.nav-card-header {
    margin-bottom: 15px;
}

.nav-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #1e6b3e;
}

.nav-card-title {
    font-size: 1.3em;
    color: #1e6b3e;
    font-weight: 600;
    margin-bottom: 10px;
}

.nav-card-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95em;
}

/* ============================================
   TOURNAMENTS GRID STYLES
   ============================================ */
.tournaments-section {
    margin-top: 30px;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.tournament-card.registered {
    border: 2px solid #2d8f5a;
    background: #f0faf4;
}

.tournament-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e8e0;
}

.tournament-title {
    font-size: 1.3em;
    color: #1e6b3e;
    font-weight: 600;
    flex: 1;
    margin-right: 15px;
}

.tournament-date {
    background: #1e6b3e;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 600;
    white-space: nowrap;
}

.tournament-details {
    margin-bottom: 20px;
}

.tournament-detail {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #f0f4f0;
}

.tournament-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #1e6b3e;
    min-width: 100px;
    margin-right: 10px;
}

.tournament-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #e0e8e0;
}

/* ============================================
   LOADING STATE
   ============================================ */
.loading-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    background: #f8faf7;
    border-radius: 10px;
}

.loading-state h2 {
    color: #1e6b3e;
    margin-bottom: 10px;
}


/* ============================================
   REGISTERED PLAYERS TABLE
   ============================================ */
.registered-players-section {
    margin-top: 20px;
}

.registered-players-section > strong {
    display: block;
    margin-bottom: 10px;
    color: #1e6b3e;
    font-size: 1em;
}

.players-table-container {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e0e8e0;
    border-radius: 6px;
}

.players-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
    background: white;
}

.players-table thead {
    position: sticky;
    top: 0;
    background: #1e6b3e;
    color: white;
    z-index: 10;
}

.players-table th {
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.players-table th:first-child {
    width: 50px;
    text-align: center;
}

.players-table th:last-child {
    width: 100px;
    text-align: center;
}

.players-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #f0f4f0;
}

.players-table td:first-child {
    text-align: center;
    color: #666;
    font-weight: 500;
}

.players-table td:last-child {
    text-align: center;
    font-weight: 600;
    color: #1e6b3e;
}

.players-table tbody tr:hover {
    background: #f8faf7;
}

.players-table tbody tr:last-child td {
    border-bottom: none;
}

/* Scrollbar styling for players table */
.players-table-container::-webkit-scrollbar {
    width: 8px;
}

.players-table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.players-table-container::-webkit-scrollbar-thumb {
    background: #1e6b3e;
    border-radius: 4px;
}

.players-table-container::-webkit-scrollbar-thumb:hover {
    background: #165230;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS FOR DASHBOARD
   ============================================ */
@media (max-width: 768px) {
    .nav-grid {
        grid-template-columns: 1fr;
    }
    
    .tournaments-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 1.6em;
    }
    
    .section-title {
        font-size: 1.4em;
    }
    
    .tournament-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .tournament-date {
        align-self: flex-start;
    }
    
    .tournament-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tournament-footer .btn {
        width: 100%;
    }
}