body {
    background-color: #f3f3f3;
    min-height: 100vh;
}

.header-glass {
    position: relative;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229,231,235,0.8);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-action-btn {
    background: rgba(248,250,252,0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(229,231,235,0.6);
    transition: all 0.3s ease;
}
.header-action-btn:hover {
    background: rgba(248,250,252,1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.share-action-btn, .share-copy-btn {
    background: transparent !important;
    border: 1px solid transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    transition: color 0.2s ease;
}
.share-action-btn:hover, .share-copy-btn:hover {
    color: #8065ee;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.back-btn {
    color: #6b7280;
    transition: all 0.3s ease;
}
.back-btn:hover {
    color: #8065ee;
    transform: translateX(-2px);
}

.floating-menu {
    position: fixed;
    right: 20px;
    top: calc(50% + 4rem);
    transform: translateY(-50%);
    z-index: 120;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: right 0.3s ease, left 0.3s ease;
}
.floating-menu.profile-open {
    right: auto;
    left: 20px;
}

.floating-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.floating-btn:active {
    transform: scale(0.95);
}

.floating-btn.active {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(240, 147, 251, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(240, 147, 251, 0); }
    100% { box-shadow: 0 0 0 0 rgba(240, 147, 251, 0); }
}

.menu-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.menu-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}

.floating-btn:hover .menu-tooltip {
    opacity: 1;
    visibility: visible;
}

.floating-btn:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.floating-btn:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.floating-btn:nth-child(3) {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #333;
}

.floating-btn:nth-child(4) {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.floating-btn:nth-child(5) {
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
    color: white;
}

.floating-btn.email-admin-btn {
    background: linear-gradient(135deg, #38bdf8 0%, #1d4ed8 100%);
    color: white;
}

.floating-btn.email-admin-btn:hover {
    box-shadow: 0 10px 28px rgba(56, 189, 248, 0.35);
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.floating-btn.action-disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.floating-menu .whatsapp-dropdown {
    position: relative;
    z-index: 101;
}

.floating-menu .whatsapp-dropdown-content {
    display: none;
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    left: auto;
    margin-top: 0;
    transform: translateY(-50%);
    background-color: white;
    min-width: 180px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 102;
    border-radius: 8px;
    overflow: hidden;
}

.floating-menu .whatsapp-dropdown-content.show {
    display: block;
}

.floating-menu .whatsapp-dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.floating-menu .whatsapp-dropdown-content a:hover {
    background-color: #f1f1f1;
}

.floating-menu .whatsapp-dropdown-content a i {
    margin-right: 10px;
    color: #25d366;
}

.hidden-audio {
    display: none;
}

@keyframes floatPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.8; }
}

.ping-status {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 16px 24px;
    border-radius: 25px;
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 999;
}
.ping-status.show {
    display: flex;
}














.ping-status.show {
    display: flex;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(229,231,235,0.8);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px 10px;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    color: #9ca3af;
    border: none;
    background: none;
    font-family: inherit;
}
.bottom-nav-item i {
    font-size: 18px;
    line-height: 1;
}
.bottom-nav-item span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: #8065ee;
}

.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 99990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.mobile-drawer-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 85vw);
    background: white;
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.32,0.72,0,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.mobile-drawer.open {
    transform: translateX(0);
}
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
    flex-shrink: 0;
}
.drawer-section-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #9ca3af;
    padding: 12px 16px 4px;
}
.drawer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}
.drawer-item:hover, .drawer-item:active {
    background: #f9fafb;
}
.drawer-item i {
    font-size: 15px;
    color: #6b7280;
    width: 18px;
    flex-shrink: 0;
}
.drawer-item.danger {
    color: #ef4444;
}
.drawer-item.danger i {
    color: #ef4444;
}
.drawer-item.danger:hover {
    background: #fef2f2;
}
.drawer-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 4px 0;
}

.profile-dropdown {
    position: fixed;
    right: 16px;
    margin-top: 8px;
    width: min(280px, calc(100vw - 24px));
    background: white;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 1px solid #f3f4f6;
    padding: 8px 0;
    z-index: 100001;
}

.profile-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    transition: background 0.15s ease;
}

.profile-dropdown-link:hover {
    background: #f9fafb;
}

.profile-dropdown-link i {
    flex-shrink: 0;
    color: #7c3aed;
    font-size: 1rem;
}

.profile-dropdown-link .fav-count-badge {
    margin-left: auto;
    font-size: 0.75rem;
    font-variant-numeric: tabular-nums;
    color: #6b7280;
}

@media (max-width: 767px) {
    .page-content-wrapper {
        padding-bottom: calc(64px + env(safe-area-inset-bottom));
    }

    .floating-menu {
        display: none;
    }
}

.reward-points.updated {
    animation: ptsPulse 0.5s ease-in-out;
}
@keyframes ptsPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.contact-item { position: relative; }
.copy-icon-btn {
    opacity: 0;
    transition: opacity 0.2s;
}
.group:hover .copy-icon-btn { opacity: 1; }

.customer-header-top-bar,
.customer-header-main-bar,
.customer-header-bottom-bar {
    border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 767px) {
    .customer-header-bottom-bar {
        display: none !important;
    }
    .customer-header-top-bar {
        display: flex !important;
        padding-top: 0.375rem;
        padding-bottom: 0.375rem;
    }
    .customer-header-main-bar {
        border-bottom: none;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .customer-header-inner {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .customer-header-main-bar__row {
        align-items: flex-end;
        gap: 0.25rem;
    }

    .customer-header-mobile-actions {
        align-items: flex-end;
        flex-shrink: 0;
        gap: 0.25rem;
    }

    .customer-header-main-bar__row .back-btn {
        padding: 0.375rem;
    }

    .customer-brand-logo img {
        height: 1.5rem;
        max-width: 5.25rem;
    }

    .customer-restaurant-switcher {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
    }

    .customer-restaurant-switcher__combos {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        gap: 0.375rem;
        width: 100%;
        max-width: 100%;
    }

    .customer-restaurant-combo-field {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        max-width: none;
    }

    .customer-restaurant-combo-row {
        gap: 0.375rem;
    }

    .customer-restaurant-combo-input {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
    }

    .customer-restaurant-combo-logo {
        width: 3rem;
        height: 3rem;
        padding: 0.2rem !important;
    }

    .customer-restaurant-combo-label {
        font-size: 0.625rem;
        letter-spacing: 0.04em;
        margin-bottom: 0.25rem;
    }

    .customer-restaurant-combo-label__full {
        display: none;
    }

    .customer-restaurant-combo-label__short {
        display: inline;
    }

    .customer-restaurant-combo-select .restaurant-combo-search-icon {
        left: 8px;
        font-size: 11px;
    }

    .customer-restaurant-combo-select .select2-container--default .select2-selection--single,
    .customer-restaurant-combo-select .select2-container--default .select2-selection--single:hover,
    .customer-restaurant-combo-select .select2-container--default.select2-container--open .select2-selection--single,
    .customer-restaurant-combo-select .select2-container--default.select2-container--focus .select2-selection--single {
        height: 34px !important;
        min-height: 34px !important;
        border-radius: 0.625rem !important;
    }

    .customer-restaurant-combo-select .select2-container--default .select2-selection--single .select2-selection__rendered {
        padding-left: 24px !important;
        padding-right: 22px !important;
        line-height: 32px !important;
        font-size: 0.75rem !important;
    }

    .customer-restaurant-combo-select .select2-container--default .select2-selection--single .select2-selection__arrow {
        right: 4px !important;
    }

    .customer-header-mobile-actions .reward-points {
        padding: 0.375rem 0.5rem;
        height: 34px;
        min-height: 34px;
    }

    .customer-header-mobile-actions #hamburgerBtn {
        width: 2.125rem;
        height: 2.125rem;
        min-width: 2.125rem;
        min-height: 2.125rem;
    }

    .customer-header-mobile-actions #hamburgerBtn i {
        font-size: 1.125rem;
    }
}

@media (max-width: 400px) {
    .customer-header-inner {
        padding-left: 0.375rem;
        padding-right: 0.375rem;
    }

    .customer-header-main-bar__row {
        gap: 0.125rem;
    }

    .customer-brand-logo img {
        height: 1.25rem;
        max-width: 4.25rem;
    }

    .customer-restaurant-switcher__combos {
        gap: 0.25rem;
    }

    .customer-restaurant-combo-row {
        gap: 0.25rem;
    }

    .customer-restaurant-combo-logo {
        width: 2.5rem;
        height: 2.5rem;
    }

    .customer-restaurant-combo-label__full {
        display: none;
    }

    .customer-restaurant-combo-label__short {
        display: inline;
    }

    .customer-restaurant-combo-select .select2-container--default .select2-selection--single,
    .customer-restaurant-combo-select .select2-container--default .select2-selection--single:hover,
    .customer-restaurant-combo-select .select2-container--default.select2-container--open .select2-selection--single,
    .customer-restaurant-combo-select .select2-container--default.select2-container--focus .select2-selection--single {
        height: 32px !important;
        min-height: 32px !important;
    }

    .customer-restaurant-combo-select .select2-container--default .select2-selection--single .select2-selection__rendered {
        padding-left: 22px !important;
        padding-right: 18px !important;
        line-height: 30px !important;
        font-size: 0.6875rem !important;
    }

    .customer-header-mobile-actions .reward-points {
        padding: 0.25rem 0.375rem;
        height: 32px;
        min-height: 32px;
        gap: 0.25rem;
    }

    .customer-header-mobile-actions .reward-points__full {
        display: none;
    }

    .customer-header-mobile-actions .reward-points__short {
        display: inline;
    }

    .customer-header-mobile-actions #hamburgerBtn {
        width: 2rem;
        height: 2rem;
        min-width: 2rem;
        min-height: 2rem;
    }
}

.customer-header-main-bar__row { flex-wrap: nowrap; align-items: center; }

.customer-brand-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    line-height: 0;
}
.customer-brand-logo img {
    display: block;
    height: 1.75rem;
    width: auto;
    max-width: 7.5rem;
    object-fit: contain;
}

@media (min-width: 768px) {
    .customer-brand-logo img {
        height: 2.25rem;
        max-width: 8.5rem;
    }
}

.reward-points__short {
    display: none;
}

.customer-header-bottom-bar__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    width: 100%;
    min-width: 0;
}
.customer-header-main-bar__row .customer-header-title {
    max-width: min(200px, 28vw);
}
@media (max-width: 1280px) {
    .customer-header-main-bar__row .customer-header-title {
        max-width: min(160px, 26vw);
        font-size: 0.9375rem;
    }
}
@media (max-width: 1024px) {
    .customer-header-main-bar__row .customer-header-title {
        max-width: min(120px, 32vw);
        font-size: 0.875rem;
    }
}

.table-code {
    background: rgba(255,255,255,0.95);
    color: #374151;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(229,231,235,0.8);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.content-card {
    background: white;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
    .content-card { padding: 20px; margin-bottom: 20px; }
}
.swal2-styled.pw-swal-sharp-btn,
.swal2-styled.pw-swal-sharp-btn:focus,
.swal2-container .swal2-confirm.pw-swal-sharp-btn,
.swal2-container button.swal2-confirm.pw-swal-sharp-btn {
    border-radius: 0 !important;
    background-color: #667eea !important;
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    min-width: 5rem;
    padding: 0.625rem 1.25rem !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: none !important;
}
.swal2-container .swal2-confirm.pw-swal-sharp-btn:hover,
.swal2-container button.swal2-confirm.pw-swal-sharp-btn:hover {
    background-color: #5a67d8 !important;
    color: #ffffff !important;
}

.customer-restaurant-switcher {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-width: 0;
    flex: 1 1 auto;
    width: 100%;
}

.customer-restaurant-switcher__combos {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .customer-restaurant-switcher__combos {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
        max-width: 58rem;
    }
}

.customer-restaurant-combo-field {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .customer-restaurant-combo-field {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        max-width: none;
    }
}

.customer-restaurant-combo-row {
    display: flex;
    align-items: flex-end;
    gap: 0.625rem;
    min-width: 0;
}

.customer-restaurant-combo-input {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.customer-restaurant-combo-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    overflow: hidden;
}

.customer-restaurant-combo-logo.is-empty {
    display: none !important;
}

@media (min-width: 768px) {
    .customer-header-top-bar {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .customer-header-main-bar {
        padding-top: 0.375rem !important;
        padding-bottom: 0.375rem !important;
    }

    .customer-header-bottom-bar {
        padding-top: 0.375rem !important;
        padding-bottom: 0.375rem !important;
    }

    .customer-restaurant-switcher__combos {
        gap: 0.75rem;
    }

    .customer-restaurant-combo-row {
        gap: 0.5rem;
    }

    .customer-restaurant-combo-logo {
        width: 3.25rem;
        height: 3.25rem;
        padding: 0.25rem !important;
    }

    .customer-restaurant-combo-label {
        font-size: 0.625rem;
        margin-bottom: 0.2rem;
        line-height: 1.1;
    }

    .customer-header-top-bar .header-action-btn.rounded-xl {
        padding: 0.25rem 0.4375rem;
    }

    .customer-header-top-bar .w-7.h-7 {
        width: 1.5rem;
        height: 1.5rem;
    }

    .customer-header-top-bar .text-gray-700.font-medium {
        font-size: 0.8125rem;
    }

    .customer-header-bottom-bar__row {
        gap: 0.25rem 0.5rem;
    }

    .customer-header-bottom-bar .header-action-btn,
    .customer-header-bottom-bar .restaurant-fav-pill,
    .customer-header-bottom-bar .restaurant-fav-pill-readonly {
        padding: 0.3125rem 0.5rem !important;
        font-size: 0.6875rem !important;
    }

    .customer-header-bottom-bar .reward-points {
        padding: 0.3125rem 0.5rem !important;
    }

    .customer-restaurant-combo-select .restaurant-combo-search-icon {
        left: 8px;
        font-size: 11px;
    }
}

.customer-restaurant-combo-logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 0.5rem;
}

.customer-restaurant-combo-logo img[hidden] {
    display: none;
}

.customer-restaurant-combo-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #111827;
    margin-bottom: 0.35rem;
    line-height: 1.2;
    text-align: center;
}

.customer-restaurant-combo-select {
    position: relative;
    min-width: 0;
    flex: 1 1 auto;
}

.customer-restaurant-combo-select .restaurant-combo-search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #8065ee;
    pointer-events: none;
    font-size: 12px;
    line-height: 1;
}

.customer-restaurant-combo-select .select2-container:not(.select2-container--open) {
    width: 100% !important;
}

.customer-restaurant-combo-select .select2-container--default .select2-selection--single,
.customer-restaurant-combo-select .select2-container--default .select2-selection--single:hover,
.customer-restaurant-combo-select .select2-container--default.select2-container--open .select2-selection--single,
.customer-restaurant-combo-select .select2-container--default.select2-container--focus .select2-selection--single {
    height: 36px !important;
    min-height: 36px !important;
    background-color: rgba(248, 250, 252, 0.8) !important;
    border: 1px solid rgba(229, 231, 235, 0.6) !important;
    border-radius: 0.75rem !important;
    box-shadow: none !important;
}

@media (min-width: 768px) {
    .customer-restaurant-combo-label__short {
        display: none;
    }

    .customer-restaurant-combo-select .select2-container--default .select2-selection--single,
    .customer-restaurant-combo-select .select2-container--default .select2-selection--single:hover,
    .customer-restaurant-combo-select .select2-container--default.select2-container--open .select2-selection--single,
    .customer-restaurant-combo-select .select2-container--default.select2-container--focus .select2-selection--single {
        height: 32px !important;
        min-height: 32px !important;
        border-radius: 0.625rem !important;
    }
}

.customer-restaurant-combo-select .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 28px !important;
    padding-right: 28px !important;
    line-height: 34px !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .customer-restaurant-combo-select .select2-container--default .select2-selection--single .select2-selection__rendered {
        padding-left: 24px !important;
        padding-right: 22px !important;
        line-height: 30px !important;
        font-size: 0.8125rem !important;
    }
}

.customer-restaurant-combo-select .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 6px !important;
}
