* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #000000; 
    color: white;
    display: flex;
    justify-content:center;
}

.settings-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}


.settings-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 10px;
}

.settings-header h1 {
    font-size: 1.5rem;
    margin-left: 20px;
}

.back-btn {
    font-size: 1.2rem;
    cursor: pointer;
}


.profile-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border: 1px solid #222;
}

.profile-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid #e50914;
}

.profile-info h3 { font-size: 1.1rem; }
.profile-info p { color: #888; font-size: 0.8rem; }

.profile-card i { margin-left: auto; color: #555; }


.section-title {
    color: #e50914;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px 0 10px 5px;
    letter-spacing: 1px;
}

.setting-item {
    background: #1a1a1a;
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.setting-item:hover { background: #252525; }

.icon-box {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}


.blue { background: rgba(0, 122, 255, 0.2); color: #007aff; }
.orange { background: rgba(255, 159, 10, 0.2); color: #ff9f0a; }
.purple { background: rgba(175, 82, 222, 0.2); color: #af52de; }
.green { background: rgba(52, 199, 89, 0.2); color: #34c759; }
.red { background: rgba(255, 59, 48, 0.2); color: #ff3b30; }

.setting-item span { flex: 1; font-size: 0.95rem; }

.status-text { color: #34c759; font-size: 0.8rem; font-weight: bold; }

.arrow { color: #444; font-size: 0.8rem; }


.logout-btn {
    width: 100%;
    padding: 15px;
    background: none;
    border: 1px solid #333;
    color: #ff3b30;
    border-radius: 12px;
    margin-top: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.logout-btn:hover { background: rgba(255, 59, 48, 0.1); border-color: #ff3b30; }

.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sub-text {
    font-size: 0.75rem;
    color: #777;
    margin-top: 2px;
}


.custom-select {
    background: #222;
    color: white;
    border: 1px solid #444;
    padding: 5px 10px;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    font-size: 0.85rem;
}


.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #444;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px; width: 16px;
    left: 3px; bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider { background-color: #e50914; }

input:checked + .slider:before {
    transform: translateX(18px);
}

.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }


.data-info {
    font-size: 0.8rem;
    color: #e50914;
    font-weight: bold;
}