﻿.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #555555;
    background-color: #D8D8D8;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.tab.active {
    color: #FFFFFF;
    background-color: #771b61;
}

.tab-content {
    display: none;
    background-color: #f5f5f5;
    border-radius: 0 10px 10px 10px;
}

.tab-content.active {
    display: block;
}
.tab.active {
    border: 2px solid #007bff;
    border-bottom: none;
}

.tab:not(.active) {
    border: 2px solid #ccc;
    border-bottom: none;
}
