.tab-container {
    max-width: 100%;
    width: 100%;
}

.tab-buttons {
    display: flex;
    gap: 0;
}

.tab-button {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-right: none;
    border-bottom: none;
    background-color: #f0f0f0;
    cursor: pointer;
    flex: 1;
    transition: all 0.3s ease;
    border-radius: 4px 4px 0 0;
    position: relative;
    top: 1px;
    font-size: 16px;
    font-weight: 500;
}

.tab-button:last-child {
    border-right: 1px solid #e0e0e0;
}

.tab-button.active {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    position: relative;
    z-index: 1;
}

.tab-content {
    display: none;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 0 0 4px 4px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.tab-content p{
    font-size: 16px;
    line-height: 1.5;
}

.tab-content.active {
    display: block;
}