﻿/* Tabs */
.setup-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content:space-around;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    background-color: transparent;
    color:white;
}

    .tab.active {
        background-color: transparent;
        font-weight: bold;
        color:lawngreen;
    }

/* Content Sections */
.content {
    display: none; /* Hide all content sections by default */
    padding: 20px;
    border: 1px solid #ccc;
}

    .content.active-container {
        display: block; /* Only show the active container */
    }

h1, h2, h3, h4, h5, p, label {
    color:silver;
    font-family:Arial;
}

#trackName option, #trackName select {
    font-family:Arial !important;
}