/* Tab styles */
.tab {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid #ddd;
    background-color: #f8f8f8;
    margin-bottom: 10px;
}

.tab button {
    background-color: #fff;
    border: 1px solid #ddd;
    outline: none;
    cursor: pointer;
    padding: 10px 15px;
    transition: all 0.3s ease;
    font-size: 12px;
    color: #555;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
    flex: 1;
    text-align: center;
}

.tab button:hover {
    background-color: #e0e0e0;
    color: #000;
}

.tab button.active {
    background-color: #359b0a;
    color: #fff;
    border-bottom: 2px solid transparent;
}