.simple-tabs-titles {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.tab-title {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background: #e9ecef;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.tab-title.active {
    background: #007bff;
    color: #fff;
    border-color: #0056b3;
}

.tab-title:hover {
    background: #007bff;
    color: #fff;
}

@media (max-width: 768px) {
    .simple-tabs-titles {
        flex-direction: column;
        align-items: center;
    }
    .tab-title {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #ccc;
    }
}

.tab-content {
    border: 1px solid #ddd;
    padding: 20px;
}

