/* Student Page Custom Styles */
.student-header {
    background: linear-gradient(135deg, #159447 0%, #073b64 100%);
    color: #ffffff;
    padding: 60px 0;
}



/* Custom Tab Panels hide/show */
.student-tab-panels > .tab-pane {
    display: none;
}
.student-tab-panels > .tab-pane.active {
    display: block;
}

/* Tab buttons modernization (branding green overrides) */
#studentTabs .nav-link {
    color: #475569 !important; /* Slate neutral text */
    background: transparent;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Icon color defaults to brand green */
#studentTabs .nav-link i {
    color: #159447 !important;
    transition: all 0.3s ease;
}

/* Hover state */
#studentTabs .nav-link:hover {
    color: #159447 !important;
    background-color: #f0fdf4; /* light green tint */
}

/* Active state - brand green pill */
#studentTabs .nav-link.active {
    color: #ffffff !important;
    background-color: #159447 !important;
    box-shadow: 0 4px 12px rgba(21, 148, 71, 0.2);
}

/* Active state icon turns white */
#studentTabs .nav-link.active i {
    color: #ffffff !important;
}

