/*
------------------------------------------------------------
Numan Discography Tabs
Version: 1.0
Replaces jQuery UI Tabs
Created: June 2026
------------------------------------------------------------
*/

/* Tab Navigation */
#tabs > ul {
    list-style: none;
    margin: 0;
    padding: 4px 4px 0 4px;
    display: flex;
    flex-wrap: wrap;
    background: #404040;
    border-bottom: 1px solid #5a5a5a;
}

#tabs > ul li {
    margin: 0 2px 0 0;
    padding: 0;
}

#tabs > ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    white-space: nowrap;

    color: #ffffff;
    text-decoration: none;

    background: #202020;
    border: 1px solid #555;
    border-bottom: none;

    border-radius: 4px 4px 0 0;

    transition: background .15s ease, border-color .15s ease;
}

#tabs > ul li a:hover {
    background: linear-gradient(to bottom, #1b8fcd 0%, #0b6ca3 100%);
    border-color: #2a9fe0;
}

#tabs > ul li a.active {
    background: linear-gradient(to bottom, #1b8fcd 0%, #0b6ca3 100%);
    border-color: #2a9fe0;
}

/* Overall tabs container */
#tabs {
    border: 1px solid #444;
    border-radius: 8px;
}
