/* ====================================
   Theme Selector Component
   ==================================== */

.theme-selector {
    position: relative;
}

.theme-selector-menu {
    min-width: 200px;
    padding: 0.5rem;
    background-color: var(--theme-card-bg, #ffffff);
    border: 1px solid var(--theme-border-color, #e3e4e9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 1050 !important;
}

.theme-option {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    color: var(--theme-text-primary, #1a1a1a);
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.theme-option:hover {
    background-color: var(--theme-bg-secondary, #f5f5f7);
}

.theme-option.active {
    background-color: #003080;
    color: #ffffff;
}

.theme-preview-dot {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    margin-right: 0.75rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.theme-preview-light {
    background-color: #f5f5f7;
}

.theme-preview-dark-blue {
    background-color: #5fa8d3;
}

.theme-preview-dark-red {
    background-color: #d35f8d;
}

.theme-option i.bi-check-lg {
    margin-left: auto;
}
