*{
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000026;
    color: #ffffff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
}

.tabs-container {
    width: 90%;
    height: 90dvh; 
    background: #000026;
    border: 2px solid #D4AF37;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.tabs {
    display: flex;
    height: 10%;
    border-bottom: 1px solid #D4AF37;
}

.tab-button {
    background-color: #000026;
    color: #D4AF37;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
    flex-grow: 1;
}

.tab-button:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.tab-button.active {
    background-color: #D4AF37;
    color: #000026;
}


