﻿/* multi select */

.mms-field {
    margin-bottom: 1.25rem;
}

.mms-label {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #344767;
}

.mms-hint {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.75rem;
    color: #6c757d;
}

.mms-shell {
    position: relative;
}

.mms-icon {
    position: absolute;
    top: 50%;
    left: 0.85rem;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: var(--bs-secondary);
    z-index: 3;
}

.mms-shell.has-icon .select2-selection {
    padding-left: 3.2rem !important;
}

/* Select2 Multi Styling */

.select2-container--default .select2-selection--multiple {
    min-height: 50px;
    border-radius: 0.9rem;
    border: 1px solid #d7dee7;
    padding: 0.4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.select2-selection__choice {
    background: color-mix(in srgb, var(--bs-primary) 10%, white) !important;
    border: none !important;
    color: var(--bs-primary) !important;
    border-radius: 0.6rem !important;
    padding: 0.25rem 0.6rem !important;
    font-size: 0.8rem !important;
    font-weight: 600;
}

.select2-selection__choice__remove {
    color: var(--bs-primary) !important;
    margin-right: 0.35rem !important;
}

.select2-container--default.select2-container--focus
    .select2-selection--multiple {
    border-color: var(--bs-primary);
}

.mms-shell.has-error .select2-selection {
    border-color: #dc3545 !important;
}

[data-bs-theme="dark"] .mms-label {
    color: #f8fafc;
}

[data-bs-theme="dark"] .mms-hint {
    color: #98a2b3;
}

[data-bs-theme="dark"] .mms-icon {
    border-color: #344054;
    color: #86efac;
    background: #111827;
}

[data-bs-theme="dark"] .select2-container--default .select2-selection--multiple {
    border-color: #344054;
    background: #111827;
    color: #f8fafc;
}

[data-bs-theme="dark"] .select2-container--default .select2-selection--multiple:hover {
    border-color: #475467;
}

[data-bs-theme="dark"]
    .select2-container--default.select2-container--focus
    .select2-selection--multiple {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(var(--app-primary-rgb, 79, 209, 165), 0.14);
}

[data-bs-theme="dark"] .select2-selection__choice {
    border: 1px solid rgba(148, 163, 184, 0.24) !important;
    color: #e5e7eb !important;
    background: #1f2937 !important;
}

[data-bs-theme="dark"] .select2-selection__choice__display {
    color: #e5e7eb !important;
}

[data-bs-theme="dark"] .select2-selection__choice__remove {
    color: #cbd5e1 !important;
}

[data-bs-theme="dark"] .select2-selection__choice__remove:hover,
[data-bs-theme="dark"] .select2-selection__choice__remove:focus {
    color: #ffffff !important;
    background: rgba(239, 68, 68, 0.18) !important;
}
