.tab {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Space between tabs */
    border-bottom: 2px solid #ccc;
    /* Bottom border for the tab container */
    margin: 20px 0;
}

.tab button {
    padding: 10px 20px;
    border: none;
    background: none;
    color: #333;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.tab button:hover {
    color: #007BFF;
    /* Blue text on hover */
}

.tab button.active {
    color: #007BFF;
    /* Blue text for active tab */
    font-weight: bold;
    /* Bold text for active tab */
}

.tab button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #007BFF;
    /* Blue underline for active tab */
}