﻿.tabs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
    font-size: 16px;
    margin-top: 50px;
}

.Statetab {
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
    flex-grow: 1;
    min-width: 100px;
    text-align: center;
}

.StateTabPanels {
    margin-top: 20px;
    padding: 10px;
}

.StatetabActive {
    background-color: #005CB9;
    border: 1px solid #005CB9;
    padding: 10px 15px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    flex-grow: 1;
    min-width: 100px;
    text-align: center;
}

.Statetab:hover {
    background-color: #ddd;
}

.StatetabActive:hover {
    background-color: #3889f8;
    color: silver;
}


@media (max-width: 600px) {
    .Statetab, .StatetabActive {
        flex: 0 0 100%;
    }
}

.color-radio-list input[type="radio"] {
    display: none;
}

.color-radio-list label {
    cursor: pointer;
    padding: 2px 5px;
    border: 2px solid transparent;
    border-radius: 5px;
    display: inline-block;
    margin-right: 3px;
    border: solid #e0e0e0 1px;
    color: #383838;
}

.color-radio-list input[type="radio"]:checked + label {
    border-color: #007bff;
    background-color: #007bff; /* Add this line to change the background color */
    color: white; /* Add this line to change the text color to white */
}

.color-radio-list label[data-color="red"] {
    background-color: #ffcccc;
}

.color-radio-list label[data-color="green"] {
    background-color: #ccffcc;
}

.color-radio-list label[data-color="blue"] {
    background-color: #ccccff;
}