/* ── Theme Modal Styles ── */
.theme-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.theme-option {
    cursor: pointer;
    position: relative;
    display: block;
}

.theme-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.theme-option-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-grey);
    border: 2px solid var(--border-grey);
    border-radius: 12px;
    transition: var(--transition);
}

.theme-option-card:hover {
    border-color: var(--primary-green);
}

.theme-option-card i:first-child {
    font-size: 18px;
    color: var(--text-dark);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.theme-option-card span {
    flex: 1;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-black);
}

.check-icon {
    color: var(--primary-green);
    font-size: 14px;
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}

/* Checked State */
.theme-option input:checked + .theme-option-card {
    background: var(--white);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-soft);
}

.theme-option input:checked + .theme-option-card .check-icon {
    opacity: 1;
    transform: scale(1);
}

.theme-option input:checked + .theme-option-card i:first-child {
    color: var(--primary-green);
}

/* Dark Mode */
body.dark-mode .theme-option-card {
    background: var(--bg-grey);
    border-color: var(--border-grey);
}

body.dark-mode .theme-option-card span {
    color: var(--text-black);
}

body.dark-mode .theme-option-card i:first-child {
    color: var(--text-dark);
}

body.dark-mode .theme-option input:checked + .theme-option-card {
    background: var(--white);
    border-color: var(--primary-green);
}

body.dark-mode .theme-option input:checked + .theme-option-card i:first-child {
    color: var(--primary-green);
}
