﻿.tab-buttons {
    display: flex;
    justify-content: space-between;
}

.tab-button {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
}

    .tab-button.active {
        background-color: #ccc;
    }

.tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
}

    .tab-content.active {
        display: block;
    }
