﻿
/* ========================= */
/* CARD */
/* ========================= */

.card {
    background: #111827;
    border-radius: 28px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* ========================= */
/* INPUT */
/* ========================= */

.input-group {
    margin-bottom: 14px;
}

.input-label {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
    font-size: 14px;
}

.input {
    width: 100%;
    background: #1e293b;
    border: none;
    color: white;
    padding: 14px;
    border-radius: 16px;
    font-size: 15px;
}

    .input:focus {
        outline: none;
        border: 1px solid #38bdf8;
    }

/* ========================= */
/* BUTTON */
/* ========================= */

.btn {
    width: 100%;
    border: none;
    padding: 15px;
    border-radius: 18px;
    background: linear-gradient(90deg,#0ea5e9,#38bdf8);
    color: white;
    margin: 5px 0px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

/* ========================= */
/* SETTINGS */
/* ========================= */

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

    .setting-item:last-child {
        border-bottom: none;
    }

.setting-title {
    font-size: 15px;
    font-weight: 500;
}

.setting-sub {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

select,
.range {
    background: #1e293b;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px;
}

/* ========================= */
/* SWITCH */
/* ========================= */

.switch {
    position: relative;
    width: 54px;
    height: 30px;
}

    .switch input {
        display: none;
    }

.slider {
    position: absolute;
    inset: 0;
    background: #334155;
    border-radius: 999px;
    transition: .3s;
}

    .slider:before {
        content: "";
        position: absolute;
        width: 24px;
        height: 24px;
        background: white;
        border-radius: 50%;
        top: 3px;
        right: 4px;
        transition: .3s;
    }

.switch input:checked + .slider {
    background: #22c55e;
}

    .switch input:checked + .slider:before {
        transform: translateX(-22px);
    }

/* ========================= */
/* PROFILE */
/* ========================= */

.profile-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #1e293b;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,.08);
}

.upload-btn {
    background: #1e293b;
    border: none;
    color: white;
    padding: 10px 16px;
    border-radius: 14px;
    cursor: pointer;
}

/* ========================= */
/* MENU BUTTONS */
/* ========================= */

.menu-btn {
    width: 100%;
    background: #111827;
    border: none;
    color: white;
    text-align: right;
    padding: 18px;
    border-radius: 22px;
    margin-bottom: 12px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.06);
}
