* {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

body {
    margin: 0;
    color: #0f172a;
}

:root {
    --btn-radius: 11px;
    --btn-shadow-primary: 0 8px 18px rgba(29, 78, 216, 0.28);
    --btn-shadow-success: 0 8px 18px rgba(22, 163, 74, 0.24);
    --btn-shadow-soft: 0 8px 16px rgba(15, 23, 42, 0.12);
    --btn-focus-ring: rgba(14, 165, 233, 0.28);
}

.login-body {
    background: radial-gradient(circle at 10% 10%, #0f766e 0, transparent 30%),
                radial-gradient(circle at 90% 90%, #1d4ed8 0, transparent 35%),
                #020617;
}

.login-background {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.brand-panel {
    color: #e2e8f0;
    padding: 2rem;
}

.brand-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(94, 234, 212, 0.4);
    color: #99f6e4;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.brand-panel h1 {
    margin-top: 1rem;
    margin-bottom: 0.7rem;
    font-size: 2.3rem;
    font-weight: 700;
}

.brand-panel p {
    color: #cbd5e1;
    max-width: 520px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.2rem;
    max-width: 460px;
}

.brand-item {
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.45);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-item i {
    color: #5eead4;
}

.login-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 2rem;
    box-shadow: 0 20px 55px rgba(2, 8, 23, 0.45);
}

.login-chip {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    color: #0f766e;
    background: #ccfbf1;
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
}

.login-title {
    margin-top: 0.9rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.input-soft .input-group-text {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #334155;
}

.input-soft .form-control {
    border-color: #cbd5e1;
}

.input-soft .form-control:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border-radius: var(--btn-radius);
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.14s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, filter 0.18s ease;
}

.btn i {
    margin-right: 0;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn:focus-visible {
    box-shadow: 0 0 0 0.2rem var(--btn-focus-ring), var(--btn-shadow-soft);
}

.btn:disabled,
.btn.disabled {
    opacity: 0.68;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

.btn-sm {
    border-radius: 9px;
    padding: 0.34rem 0.72rem;
    font-size: 0.8rem;
}

.btn-lg {
    border-radius: 13px;
    padding: 0.72rem 1rem;
}

.btn-primary {
    border-color: #0b7ad6;
    background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
    box-shadow: var(--btn-shadow-primary);
}

.btn-primary:hover {
    border-color: #1d4ed8;
    filter: brightness(1.03);
}

.btn-success {
    border-color: #15803d;
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: var(--btn-shadow-success);
}

.btn-success:hover {
    border-color: #166534;
    filter: brightness(1.03);
}

.btn-gradient {
    border: 1px solid #0b7ad6;
    background: linear-gradient(135deg, #0f766e, #1d4ed8);
    box-shadow: 0 8px 18px rgba(15, 118, 110, 0.28);
}

.btn-gradient:hover {
    filter: brightness(1.05);
}

.btn-outline-primary {
    border-color: #7dd3fc;
    color: #075985;
    background: #f0f9ff;
}

.btn-outline-primary:hover {
    background: #0ea5e9;
    border-color: #0284c7;
    color: #fff;
    box-shadow: 0 8px 16px rgba(14, 165, 233, 0.24);
}

.btn-outline-danger {
    border-color: #fecaca;
    color: #b91c1c;
    background: #fef2f2;
}

.btn-outline-danger:hover {
    border-color: #ef4444;
    background: #ef4444;
    color: #fff;
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.24);
}

.btn-outline-light {
    border-color: rgba(226, 232, 240, 0.5);
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.16);
}

.btn-outline-light:hover {
    border-color: rgba(125, 211, 252, 0.7);
    background: rgba(14, 165, 233, 0.24);
    color: #fff;
}

.btn-close:focus {
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.2);
}

.tiny-hint {
    color: #64748b;
    font-size: 0.78rem;
}

.app-body {
    background: #dce5f0;
    min-height: 100vh;
    position: relative;
}

.app-grid-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 0;
}

.app-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
    transition: grid-template-columns 0.22s ease;
}

.app-sidebar {
    background: linear-gradient(165deg, #0f172a, #1f2937 65%, #0f766e);
    color: #e2e8f0;
    padding: 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-right: 1px solid rgba(148, 163, 184, 0.25);
}

.sidebar-head {
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.sidebar-head-subtitle {
    display: block;
    margin-top: 0.4rem;
    color: #94a3b8;
}

.sidebar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #f8fafc;
    font-weight: 700;
    text-decoration: none;
}

.sidebar-brand i {
    font-size: 1.4rem;
    color: #67e8f9;
}

.sidebar-compact-toggle {
    border-color: rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.22);
    color: #e2e8f0;
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    padding: 0;
    border-radius: 9px;
}

.sidebar-compact-toggle:hover {
    border-color: rgba(125, 211, 252, 0.7);
    background: rgba(14, 165, 233, 0.25);
    color: #fff;
}

.sidebar-compact-wrap {
    display: flex;
    justify-content: flex-end;
}

.sidebar-footer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.sidebar-user-menu {
    flex: 1;
}

.sidebar-user-menu-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.4rem 0.62rem;
}

.sidebar-user-menu-toggle i {
    font-size: 1rem;
}

.sidebar-user-menu-caret {
    font-size: 0.72rem !important;
    opacity: 0.85;
    transition: transform 0.2s ease;
}

.sidebar-user-menu-toggle[aria-expanded="true"] .sidebar-user-menu-caret {
    transform: rotate(180deg);
}

.sidebar-user-dropdown {
    min-width: 260px;
    padding: 0.4rem;
    border-radius: 12px;
    border: 1px solid #dbe2ea;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
}

.sidebar-user-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.6rem;
}

.sidebar-user-name {
    font-weight: 700;
    color: #0f172a;
}

.sidebar-user-role {
    display: inline-flex;
    margin-top: 0.15rem;
    margin-bottom: 0.5rem;
    padding: 0.1rem 0.48rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    background: #e0f2fe;
    color: #075985;
}

.sidebar-user-meta {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    font-size: 0.78rem;
    color: #334155;
    margin-bottom: 0.35rem;
}

.sidebar-user-meta i {
    color: #0ea5e9;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.sidebar-link {
    border: 1px solid transparent;
    background: transparent;
    color: #cbd5e1;
    border-radius: 10px;
    padding: 0.62rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    text-align: left;
    font-weight: 500;
    transition: all 0.2s ease;
}

.sidebar-link i {
    margin-right: 0;
}

.sidebar-link:hover {
    background: rgba(148, 163, 184, 0.13);
    color: #fff;
}

.sidebar-link.active {
    border-color: rgba(125, 211, 252, 0.42);
    background: rgba(14, 165, 233, 0.2);
    color: #fff;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

@media (min-width: 992px) {
    .app-shell.sidebar-collapsed {
        grid-template-columns: 86px 1fr;
    }

    .app-shell.sidebar-collapsed .app-sidebar {
        padding: 0.95rem 0.5rem;
    }

    .app-shell.sidebar-collapsed .sidebar-head {
        padding-bottom: 0.5rem;
    }

    .app-shell.sidebar-collapsed .sidebar-brand {
        justify-content: center;
        width: 100%;
    }

    .app-shell.sidebar-collapsed .sidebar-brand-label,
    .app-shell.sidebar-collapsed .sidebar-head-subtitle,
    .app-shell.sidebar-collapsed .sidebar-link-label,
    .app-shell.sidebar-collapsed .sidebar-user-menu-label,
    .app-shell.sidebar-collapsed .sidebar-user-menu-caret {
        display: none;
    }

    .app-shell.sidebar-collapsed .sidebar-compact-wrap {
        justify-content: center;
    }

    .app-shell.sidebar-collapsed .sidebar-nav {
        align-items: center;
    }

    .app-shell.sidebar-collapsed .sidebar-link {
        justify-content: center;
        width: 100%;
        padding: 0.58rem 0.45rem;
    }

    .app-shell.sidebar-collapsed .sidebar-link i {
        font-size: 1.1rem;
    }

    .app-shell.sidebar-collapsed .sidebar-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .app-shell.sidebar-collapsed .sidebar-footer-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .app-shell.sidebar-collapsed .sidebar-user-menu {
        flex: 0 0 auto;
    }

    .app-shell.sidebar-collapsed .sidebar-user-menu-toggle,
    .app-shell.sidebar-collapsed .sidebar-icon-btn {
        width: 2.25rem !important;
        min-width: 2.25rem;
        justify-content: center;
        padding: 0.38rem 0 !important;
    }

    .app-shell.sidebar-collapsed .sidebar-user-dropdown {
        min-width: 250px;
    }
}

.app-main {
    padding: 1rem;
    overflow-x: hidden;
}

.app-topbar {
    border: 1px solid #dbe2ea;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.topbar-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: #ecfeff;
    border: 1px solid #bae6fd;
    color: #0369a1 !important;
    font-weight: 500;
}

.topbar-feature-note {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.topbar-feature-caption {
    color: #475569;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.topbar-title {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 700;
    color: #0f172a;
}

.topbar-subtitle {
    color: #64748b;
    font-size: 0.82rem;
}

.app-content {
    display: block;
}

.app-section {
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-card {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(125deg, #0f766e, #1d4ed8 62%, #1e3a8a);
    color: #fff;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.2);
}

.hero-eyebrow {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.78);
}

.hero-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.hero-subtitle {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.kpi-card {
    background: #fff;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    padding: 0.9rem 0.95rem;
    min-height: 96px;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
}

.kpi-label {
    margin: 0;
    color: #64748b;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kpi-card h3 {
    margin: 0.45rem 0 0;
    font-weight: 700;
    color: #0f172a;
    font-size: 1.35rem;
}

.kpi-positive {
    color: #166534 !important;
}

.kpi-negative {
    color: #991b1b !important;
}

.panel-card {
    background: #fff;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    padding: 0.85rem;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.05);
}

.panel-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.85rem;
}

.panel-title i {
    color: #0ea5e9;
    margin-right: 0.35rem;
}

.panel-subtitle {
    color: #64748b;
    margin-top: -0.45rem;
    margin-bottom: 1rem;
    font-size: 0.84rem;
}

.import-notes {
    padding-left: 1.2rem;
    color: #475569;
    margin-bottom: 0;
}

.import-notes li {
    margin-bottom: 0.3rem;
}

.import-error-list {
    margin: 0;
    padding-left: 1.1rem;
    color: #991b1b;
    max-height: 220px;
    overflow: auto;
}

.import-error-list li {
    margin-bottom: 0.25rem;
}

.import-warning-list {
    margin: 0;
    padding-left: 1.1rem;
    color: #92400e;
    max-height: 180px;
    overflow: auto;
}

.import-warning-list li {
    margin-bottom: 0.25rem;
}

.import-step-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.import-step-chip {
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #334155;
    border-radius: 10px;
    padding: 0.45rem 0.6rem;
    font-size: 0.8rem;
    text-align: left;
}

.import-step-chip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    background: #e2e8f0;
    color: #0f172a;
    margin-right: 0.4rem;
    font-weight: 700;
}

.import-step-chip.active {
    border-color: #38bdf8;
    background: #ecfeff;
    color: #0c4a6e;
}

.import-step-chip.active span {
    background: #0ea5e9;
    color: #fff;
}

.import-step-chip.done {
    border-color: #86efac;
    background: #f0fdf4;
    color: #14532d;
}

.import-step-chip.done span {
    background: #22c55e;
    color: #fff;
}

.import-step-chip.locked {
    opacity: 0.6;
}

.import-step-title {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.import-step-card.is-disabled {
    opacity: 0.68;
    border-style: dashed;
}

.import-step-card.is-active {
    border-color: #38bdf8;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.15), 0 3px 10px rgba(15, 23, 42, 0.05);
}

.table-search {
    max-width: 340px;
}

.table-filter {
    max-width: 200px;
}

.table-filter-narrow {
    max-width: 120px;
}

.stock-toolbar {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, minmax(130px, 1fr));
    gap: 0.5rem;
}

.app-pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.app-table th {
    color: #475569;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.app-table td {
    vertical-align: middle;
}

.movement-meta {
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.3;
}

.movement-product-picker {
    position: relative;
}

.movement-product-input-wrap {
    position: relative;
}

.movement-product-search-icon {
    position: absolute;
    left: 0.72rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 0.88rem;
    pointer-events: none;
}

.movement-product-input {
    padding-left: 2rem;
    padding-right: 2.45rem;
}

.movement-product-clear {
    position: absolute;
    top: 50%;
    right: 0.35rem;
    transform: translateY(-50%);
    width: 1.7rem;
    min-width: 1.7rem;
    height: 1.7rem;
    padding: 0;
    border-radius: 8px;
}

.movement-product-list {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.35rem);
    z-index: 35;
    max-height: 290px;
    overflow: auto;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.16);
    padding: 0.3rem;
}

.movement-product-option {
    width: 100%;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 8px;
    padding: 0.45rem 0.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    cursor: pointer;
}

.movement-product-option:hover,
.movement-product-option.active {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.movement-product-option-main {
    font-size: 0.84rem;
    color: #0f172a;
    font-weight: 600;
}

.movement-product-option-meta {
    font-size: 0.74rem;
    color: #64748b;
}

.movement-product-empty {
    padding: 0.65rem 0.6rem;
    color: #64748b;
    font-size: 0.8rem;
}

.movement-product-hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.74rem;
}

.stock-badge-low {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    font-size: 0.75rem;
    background: #fee2e2;
    color: #991b1b;
}

.stock-badge-ok {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    font-size: 0.75rem;
    background: #dcfce7;
    color: #166534;
}

.movement-pill-in,
.movement-pill-out {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.15rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.movement-pill-in {
    background: #dcfce7;
    color: #166534;
}

.movement-pill-out {
    background: #fee2e2;
    color: #991b1b;
}

.role-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.15rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.role-pill-superadmin {
    background: #ede9fe;
    color: #5b21b6;
}

.role-pill-admin {
    background: #dbeafe;
    color: #1d4ed8;
}

.role-pill-operador {
    background: #e2e8f0;
    color: #334155;
}

.modal .modal-content {
    border: 1px solid #dbe2ea;
    border-radius: 14px;
}

.modal .modal-header {
    border-bottom: 1px solid #e2e8f0;
}

.modal .modal-title i {
    color: #0ea5e9;
    margin-right: 0.3rem;
}

.btn-outline-secondary {
    border-color: #cbd5e1;
    color: #334155;
    background: #f8fafc;
}

.btn-outline-secondary:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
    color: #0f172a;
    box-shadow: 0 8px 14px rgba(100, 116, 139, 0.18);
}

@media (max-width: 1199px) {
    .app-shell {
        grid-template-columns: 240px 1fr;
    }

    .stock-toolbar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .login-card {
        padding: 1.3rem;
        border-radius: 16px;
    }

    .app-shell {
        grid-template-columns: 1fr;
    }

    .app-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 270px;
        transform: translateX(-100%);
        transition: transform 0.2s ease;
        z-index: 70;
    }

    .sidebar-footer-actions {
        width: 100%;
    }

    .sidebar-user-menu {
        width: 100%;
    }

    .sidebar-user-menu-toggle {
        width: 100%;
        justify-content: flex-start;
    }

    .app-sidebar.open {
        transform: translateX(0);
    }

    .app-main {
        padding: 0.75rem;
    }

    .topbar-title {
        font-size: 1.05rem;
    }

    .topbar-feature-note {
        align-items: flex-start;
    }

    .hero-title {
        font-size: 1.15rem;
    }

    .hero-actions {
        width: 100%;
    }

    .table-filter,
    .table-search {
        max-width: 100%;
    }

    .movement-product-list {
        max-height: 220px;
    }

    .stock-toolbar {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn,
    .app-pager .btn {
        width: 100%;
    }

    .import-step-nav {
        grid-template-columns: 1fr;
    }

    .modal-fullscreen-sm-down .modal-content {
        border-radius: 0;
        border: 0;
    }

    .modal-fullscreen-sm-down .modal-header {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 2;
        padding: 0.75rem 0.9rem;
    }

    .modal-fullscreen-sm-down .modal-body {
        padding: 0.9rem;
    }
}

