/* Переключатель темы для светлой темы */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

/* Скрываем иконку солнца в светлой теме */
.theme-toggle .sun-icon {
    display: none;
}

/* Маленький переключатель для модального окна менеджера */
.theme-toggle-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--card-background);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
    flex-shrink: 0;
}

.theme-toggle-small:hover {
    background: var(--hover-background);
    border-color: var(--primary-color);
}

.theme-toggle-small:active {
    transform: scale(0.95);
}

.theme-toggle-small svg {
    width: 18px;
    height: 18px;
}

/* Скрываем иконку солнца в светлой теме */
.theme-toggle-small .sun-icon {
    display: none;
}

/* Обёртка для переключателя темы в модальном окне */
.theme-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.theme-toggle-wrapper .manager-modal-user-phone {
    flex: 1;
}
