/* --- Settings Page Styles --- */

.settings-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.settings-group-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.settings-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.setting-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: white;
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

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

.setting-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.setting-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Icon Colors */
.icon-blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.icon-purple { background: rgba(168, 85, 247, 0.2); color: #c084fc; }
.icon-green { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.icon-yellow { background: rgba(234, 179, 8, 0.2); color: #facc15; }
.icon-red { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.icon-gray { background: rgba(71, 85, 105, 0.4); color: #cbd5e1; }

.setting-content {
    flex-grow: 1;
}

.setting-title {
    font-weight: 500;
    font-size: 1rem;
    color: #f1f5f9;
}

.setting-desc {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.1rem;
}

.setting-arrow {
    color: #475569;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.setting-item:hover .setting-arrow {
    color: #94a3b8;
    transform: translateX(2px);
}

/* Danger Zone Button Style */
.logout-button {
    width: 100%;
    margin-top: 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #fca5a5;
    font-weight: 600;
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.logout-button:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(220, 38, 38, 0.3);
}

/* Version Info */
.app-version {
    text-align: center;
    font-size: 0.75rem;
    color: #475569;
    margin-top: 2rem;
    font-family: monospace;
}