/* Theme Modal Styles */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.theme-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    cursor: pointer;
    background: var(--bg-secondary);
}

.theme-option:hover {
    border-color: var(--primary);
    background: var(--bg-tertiary);
}

.theme-option.active {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
}

.theme-option i {
    font-size: 20px;
    color: var(--primary);
    /* width: 24px; */
}

.theme-option span {
    font-weight: 500;
    color: var(--text-primary);
}