/* Settings Page Styles */
.settings-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.settings-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-header i {
    font-size: 1.8rem;
    margin-right: 1rem;
    color: #4dabf7;
}

.settings-header h1 {
    font-size: 2rem;
    font-weight: 300;
    margin: 0;
    color: #fff;
}

.setting-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.setting-info h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    color: #fff;
}

.setting-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
    line-height: 1.6;
}

.version-history {
    margin-top: 1.5rem;
}

.version-history h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #fff;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.version-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.25rem;
    margin: 1.25rem 0;
    border-left: 4px solid #4dabf7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.version-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.version-item > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.version-item strong {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

.version-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.version-item ul {
    margin: 0.75rem 0 0 1.25rem;
    padding: 0;
    list-style-type: none;
}

.version-item li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.version-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4dabf7;
    font-size: 1.2rem;
    line-height: 1;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-left: 10px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

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

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

input:focus + .slider {
    box-shadow: 0 0 1px #4dabf7;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .settings-container {
        padding: 1.5rem;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .settings-header h1 {
        font-size: 1.6rem;
    }
    
    .settings-header i {
        font-size: 1.5rem;
    }
    
    .setting-item {
        padding: 1.25rem 0;
    }
    
    .version-item {
        padding: 1rem;
    }
    
    .version-item li {
        padding-left: 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .settings-container {
        padding: 1.25rem 1rem;
    }
    
    .settings-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .settings-header i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .setting-info h3 {
        font-size: 1.1rem;
    }
    
    .setting-info p {
        font-size: 0.95rem;
    }
}
