.tab-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tabs {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #D9D9F3;
    justify-content: flex-start;
	
}

.tabs .tab-link {
    padding: 10px 20px;
    cursor: pointer;
    border-right: 1px solid #ccc;
    background: #f1f1f1;
    text-align: center;
    transition: background 0.3s ease;
	border-radius: 10px 10px 0px 0px;
}

.tabs .tab-link:last-child {
    border-right: none;
}

.tabs .tab-link:hover {
    background: #e1e1e1;
}

.tabs .tab-link.active {
    background: #3F3C71;
    font-weight: bold;
    border-bottom: 3px solid #D89A43;
	color:#FFFFFF;
}

.tab-content {
    padding: 10px;
    display: none;
    flex: 1;
    border-top: none;
}

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

@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
    }

    .tabs .tab-link {
        border-right: none;
        border-bottom: 1px solid #ccc;
    }

    .tabs .tab-link.active {
        border-bottom: none;
        border-right: 3px solid #D89A43;
    }

    .tab-content {
        border-top: 1px solid #ccc;
    }
}

@media (max-width: 480px) {
    .tabs .tab-link {
        padding: 15px;
        font-size: 16px;
    }

    .tab-content {
        padding: 15px;
    }
}
