/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

.tab-body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.tabs {
    /*width: 1420px;*/
    /* border: 1px solid #ccc; */
    border-radius: 5px;
    overflow: hidden;
}

/* Tab buttons */
.tab-buttons {
    display: flex;
    /* background-color: #f9f9f9; */
}

.tab-buttons button {
    flex: 1;
    padding: 10px;
    border: none;
    /* background-color: #f9f9f9; */
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab-buttons button:hover {
    /* background-color: #ddd; */
}

.tab-buttons button.active {
    background-color: 4cc3ff;
    color: #fff;
}

/* Tab content */
.tab-content {
    /* padding: 15px; */
    display: none;
}

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