.custom-tabs {
    border: none;
    margin-left: 5px;
    margin-bottom: 20px;
}

/* Общий вид вкладок */
.custom-tab-link {
    margin-top: 10px; /* Отступ сверху */
    margin-bottom: 10px; /* Отступ снизу */
    padding: 10px 20px; /* Внутренний отступ */
    border-radius: 5px;
    padding: 10px 20px;
    width: 250px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.custom-tabs .nav-item {
    margin: 0 10px;
}

/* Активная вкладка */
.custom-tab-link.active {
    background: linear-gradient(to top, #bd53f1, #d84fd3);
    color: #fff;
    border-color: transparent;
}

/* Неактивная вкладка */
.custom-tab-link:not(.active) {
    font-weight: normal;
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #bd53f1;
}

/* Наведение на неактивную вкладку */
.custom-tab-link:not(.active):hover {
    background-color: #e2b4ff;
    color: #2b2531;
}
