 /* Контейнер настроек */
.settings-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    margin-left: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Шапка с табами */
.settings-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.tab-link {
    text-decoration: none;
    color: #6a1b9a;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 5px;
    position: relative;
    cursor: pointer;
    transition: color 0.3s;
}

.tab-link:hover {
    color: #8a2be2;
}

/* Активная вкладка */
.tab-link.active {
    color: #8a2be2;
}

/* Фиолетовая полоска под активной вкладкой */
.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px; /* Чтобы перекрыть границу контейнера */
    left: 0;
    width: 100%;
    height: 3px;
    background: #8a2be2;
    border-radius: 3px 3px 0 0;
}

/* Контент вкладок */
.tab-content {
    display: none; /* Скрываем все по умолчанию */
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block; /* Показываем активную */
}

/* Пример стилей для полей внутри */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4a148c;
    font-weight: 600;
}
.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #d1c4e9;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}
.form-group input:focus {
    border-color: #8a2be2;
}

.btn-save {
    background: #8a2be2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
.btn-save:hover {
    background: #6a1b9a;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}