/* Unified Menu Bar Styling for Teams, Schedule and Coaching Pages */

/* Reset menu styling for consistency */
.grade-tabs {
    background: linear-gradient(135deg, #000000, #E63946) !important;
    padding: 20px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
    margin-bottom: 30px !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

/* Header styles */
.grade-tabs-header {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 15px !important;
    position: relative !important;
    width: 100% !important;
}

/* Primary button styling */
.grade-tabs-header .grade-tab {
    background-color: #E63946 !important;
    height: 50px !important;
    width: 180px !important;
    font-size: 1.1em !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: 2px solid white !important;
    border-radius: 6px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
}

/* Secondary buttons container */
.grade-tabs-scroll {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    padding-top: 15px !important;
    margin-top: 5px !important;
    border-top: 2px solid rgba(255,255,255,0.2) !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Secondary button styling */
.grade-tabs-scroll .grade-tab {
    background-color: #888888 !important;
    color: white !important;
    height: 44px !important;
    width: 120px !important;
    line-height: 40px !important;
    margin: 0 6px 6px 0 !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
    border-radius: 6px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    font-size: 0.95em !important;
    letter-spacing: 0.5px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    transition: background-color 0.3s ease,
                color 0.3s ease,
                border 0.3s ease,
                transform 0.3s ease,
                box-shadow 0.3s ease !important;
}

/* Secondary button hover effects */
.grade-tabs-scroll .grade-tab:hover:not(.active) {
    background-color: #E63946 !important;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15) !important;
}

/* Active state for all buttons */
.grade-tab.active {
    background-color: #E63946 !important;
    color: white !important;
    border: 2px solid white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
}