        .settings-container {
            margin: 0 auto;
        }

        .settings-section {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px var(--shadow);
        }

        .settings-section-title {
            font-size: 18px;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }

        .setting-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }

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

        .setting-label {
            font-size: var(--font-size-base);
            color: var(--text-color);
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .setting-desc {
            font-size: 14px;
            opacity: 0.7;
        }

        .toggle-switch {
            position: relative;
            width: 50px;
            height: 26px;
            background: var(--border-color);
            border-radius: 13px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .toggle-switch.active {
            background: var(--primary-color);
        }

        .toggle-slider {
            position: absolute;
            top: 3px;
            right: 3px;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s;
        }

        .toggle-switch.active .toggle-slider {
            transform: translateX(-24px);
        }

        .color-picker-container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 20px 0;
        }

        .color-option {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.2s;
            box-shadow: 0 2px 8px var(--shadow);
        }

        .color-option:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px var(--shadow-heavy);
        }

        .color-option.active {
            border-color: var(--text-color);
            transform: scale(1.1);
            box-shadow: 0 4px 16px var(--shadow-heavy);
        }

        .font-size-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .font-size-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
            background: var(--card-bg);
            color: var(--primary-color);
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.2s;
        }

        .font-size-btn:hover {
            background: var(--primary-color);
            color: white;
        }

        .font-size-display {
            font-size: var(--font-size-base);
            color: var(--text-color);
            min-width: 60px;
            text-align: center;
        }

        .notification-time-picker {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 10px;
        }

        .time-input {
            padding: 10px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: var(--card-bg);
            color: var(--text-color);
            font-size: var(--font-size-base);
            font-family: inherit;
        }

        .days-selector {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .day-btn {
            padding: 8px 12px;
            border: 2px solid var(--border-color);
            border-radius: 20px;
            background: var(--card-bg);
            color: var(--text-color);
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .day-btn.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .save-btn {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 10px;
            background: var(--primary-color);
            color: white;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 20px;
            font-family: 'cairo', sans-serif;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .save-btn:hover {
            background: var(--primary-light);
        }

        .notification-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 15px;
        }

        .notification-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px;
            background: var(--bg-color);
            border-radius: 8px;
        }

        .notification-info {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .notification-time {
            font-size: var(--font-size-base);
            color: var(--text-color);
            font-weight: 600;
        }

        .notification-days {
            font-size: 14px;
            opacity: 0.7;
        }

        .delete-notification-btn {
            background: #f44336;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
        }

        .add-notification-btn {
            width: 100%;
            padding: 12px;
            border: 2px dashed var(--primary-color);
            border-radius: 10px;
            background: transparent;
            color: var(--primary-color);
            font-size: var(--font-size-base);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 10px;
        }

        .add-notification-btn:hover {
            background: var(--primary-color);
            color: white;
        }

        .preview-text {
            font-size: var(--font-size-ayah);
            line-height: 2;
            text-align: center;
            padding: 20px;
            background: var(--bg-color);
            border-radius: 8px;
            margin-top: 15px;
        }
    
