
.tabs {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width:100%;
    padding: 20px;
}

.tab__list {
    display: flex;
    justify-content: space-around;
    cursor: pointer;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.tab__list > div {
    padding: 10px 20px;
    border-radius: 4px 4px 0 0;
    transition: background-color 0.3s;
}

.tab__list > div:hover {
    background-color: #f9f9f9;
}

.tab__content > div {
    display: none;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
}

.is--active {
    font-weight: bold;
    display: block !important;
    border-bottom: 2px solid #007BFF;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #007BFF;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}
