﻿.settings-page {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.settings-sidebar {
    width: 250px;
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

.settings-item {
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 8px;
    transition: .2s;
}

    .settings-item:hover {
        background: #eef4ff;
    }

    .settings-item.active {
        background: #0d6efd;
        color: white;
    }

.settings-content {
    flex: 1;
    background: white;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

.form-group {
    margin-bottom: 20px;
}
