:root {
    --aurix-bg: #f4f6f8;
    --aurix-panel: #ffffff;
    --aurix-border: #d9e0e8;
    --aurix-text: #17202a;
    --aurix-muted: #6b7785;
    --aurix-primary: #1f6f8b;
    --aurix-primary-dark: #154f66;
    --aurix-accent: #c9a227;
    --lims-blue: #1f6f8b;
    --lims-blue-dark: #122b39;
    --lims-muted: #60748a;
    --lims-orange: #c9a227;
}

body {
    background: var(--aurix-bg);
    color: var(--aurix-text);
    font-size: 14px;
    overflow-x: hidden;
}

.app-shell {
    min-height: 100vh;
}

.topbar {
    background: #122b39;
    color: #fff;
    border-bottom: 3px solid var(--aurix-accent);
}

.aurix-menu {
    --bs-offcanvas-width: 340px;
}

.menu-eyebrow {
    color: var(--aurix-primary);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.menu-list,
.menu-children {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-node {
    margin-bottom: 4px;
}

.menu-link {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: #263746;
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    text-decoration: none;
    width: 100%;
}

.menu-link:hover,
.menu-link.is-active {
    background: #e8f3f7;
    color: var(--aurix-primary-dark);
}

.menu-icon {
    margin-right: 10px;
}

.menu-caret {
    font-size: 12px;
}

.menu-children {
    border-left: 1px solid var(--aurix-border);
    margin-left: 20px;
    padding-left: 8px;
}

.menu-empty {
    color: var(--aurix-muted);
    padding: 12px;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: var(--aurix-accent);
    color: #122b39;
    font-weight: 800;
}

.brand-logo {
    width: 46px;
    height: 46px;
    display: inline-block;
    border-radius: 8px;
    background: #fff;
    object-fit: contain;
    padding: 4px;
}

.login-logo {
    width: 132px;
    height: auto;
    display: block;
    margin: 0 auto 18px;
}

.login-page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: #e9f1f4;
}

.login-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.login-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 38%, rgba(255,255,255,.34) 68%, rgba(18,43,57,.10) 100%),
        linear-gradient(180deg, rgba(31,111,139,.12), rgba(201,162,39,.10));
}

.login-shell {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(360px, 460px);
    gap: 48px;
    align-items: center;
    padding: 48px clamp(24px, 6vw, 84px);
}

.login-brand-panel {
    max-width: 640px;
}

.login-brand-panel .login-logo {
    width: min(270px, 58vw);
    margin: 0 0 20px;
}

.login-divider {
    width: min(360px, 70vw);
    height: 2px;
    margin: 0 0 24px;
    background: linear-gradient(90deg, rgba(201,162,39,.08), rgba(201,162,39,.95), rgba(201,162,39,.08));
    position: relative;
}

.login-divider::after {
    content: "";
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid var(--aurix-accent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.login-title {
    color: #122b39;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.05;
    margin: 0;
}

.login-title span {
    color: var(--aurix-primary);
    font-weight: 700;
}

.login-subtitle {
    color: #526575;
    font-size: 17px;
    margin: 18px 0 28px;
    max-width: 540px;
}

.login-feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(132px, 188px));
    gap: 14px;
    margin-top: 34px;
}

.login-feature {
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(31,111,139,.18);
    border-radius: 8px;
    padding: 8px;
    color: #263746;
    backdrop-filter: blur(5px);
    box-shadow: 0 12px 28px rgba(7,55,99,.08);
    overflow: hidden;
}

.login-feature i {
    color: var(--aurix-primary);
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.login-feature span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    min-height: 30px;
    padding: 8px 4px 4px;
    text-align: center;
}

.aurix-feature-img {
    aspect-ratio: 1.35 / 1;
    border: 1px solid rgba(206,164,56,.28);
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
    display: block;
    height: 96px;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}

.login-card {
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(217,224,232,.86);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(18,43,57,.20);
    padding: 32px;
    backdrop-filter: blur(10px);
}

.login-card-title {
    color: #122b39;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.login-card-subtitle {
    color: var(--aurix-muted);
    margin-bottom: 24px;
}

.lims-login-card-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 40px;
}

.lims-login-card {
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(255,255,255,0.48);
    border-radius: 26px;
    background: rgba(255,255,255,0.54);
    box-shadow:
        0 22px 52px rgba(7, 55, 99, 0.14),
        inset 0 1px 0 rgba(255,255,255,0.42);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: hidden;
}

.lims-login-card-head {
    padding: 40px 30px 20px 30px;
    text-align: center;
}

.lims-login-card-title {
    margin: 0;
    color: var(--lims-blue-dark);
    font-size: 21px;
    font-weight: 700;
}

.lims-login-card-subtitle {
    margin-top: 4px;
    color: var(--lims-muted);
    font-size: 13px;
}

.lims-login-card-body {
    padding: 4px 30px 28px 30px;
}

.lims-form-label {
    font-size: 13px;
    font-weight: 700;
    color: #1f3345;
    margin-bottom: 7px;
}

.lims-input-group {
    position: relative;
    margin-bottom: 16px;
}

.lims-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #7a90a4;
    font-size: 17px;
    z-index: 2;
}

.lims-login-card .form-control {
    height: 48px;
    border-radius: 15px;
    border: 1px solid rgba(11,79,147,0.14);
    background: rgba(255,255,255,0.72);
    font-size: 14px;
    font-weight: 500;
    color: #16334d;
    padding-left: 42px;
    box-shadow: none;
}

.lims-login-card .form-control:focus {
    border-color: rgba(201,162,39,0.72);
    box-shadow: 0 0 0 0.20rem rgba(201,162,39,0.16);
    background: rgba(255,255,255,0.90);
}

.lims-btn-login {
    width: 100%;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.45) !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    background: linear-gradient(180deg, #1f7f9d 0%, #154f66 100%) !important;
    box-shadow: 0 10px 20px rgba(7, 55, 99, 0.24);
    transition: all 0.18s ease-in-out;
    cursor: pointer;
}

.lims-btn-login:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #2a94b4 0%, #1f6f8b 100%) !important;
    box-shadow: 0 13px 24px rgba(7, 55, 99, 0.30);
    filter: none;
}

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

.lims-forgot {
    margin-top: 14px;
    text-align: center;
}

.lims-forgot label {
    color: var(--lims-blue-dark);
    font-size: 13px;
    font-weight: 500;
    text-underline-offset: 3px;
}

.lims-login-footer {
    background: linear-gradient(90deg, rgba(18,43,57,0.94) 0%, rgba(31,111,139,0.88) 48%, rgba(201,162,39,0.84) 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.35px;
    padding: 12px 16px;
    border-top: 1px solid rgba(255,255,255,0.22);
}

@media (max-width: 900px) {
    .login-shell {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 30px 18px;
    }

    .login-brand-panel {
        max-width: none;
    }

    .login-feature-row {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .aurix-feature-img {
        height: 82px;
    }

    .lims-login-card-wrap {
        padding-right: 0;
    }

    .lims-login-card {
        max-width: 430px;
    }
}

@media (max-width: 560px) {
    .login-feature-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 22px;
    }

    .login-feature {
        padding: 6px;
    }

    .login-feature span {
        font-size: 11px;
        min-height: 38px;
        padding: 7px 2px 2px;
    }

    .aurix-feature-img {
        height: 62px;
    }

    .login-card {
        padding: 24px;
    }

    .lims-login-card-wrap {
        width: 100%;
        max-width: 390px;
        margin: 0 auto 24px auto;
        padding: 0;
    }

    .lims-login-card {
        width: 100%;
        max-width: 390px;
        border-radius: 28px;
        background: rgba(255,255,255,0.66);
        box-shadow:
            0 18px 42px rgba(7, 55, 99, 0.12),
            inset 0 1px 0 rgba(255,255,255,0.48);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .lims-login-card-head {
        padding: 32px 26px 18px 26px;
    }

    .lims-login-card-title {
        font-size: 26px;
        line-height: 1.15;
    }

    .lims-login-card-subtitle {
        margin-top: 8px;
        font-size: 16px;
        line-height: 1.4;
    }

    .lims-login-card-body {
        padding: 4px 26px 28px 26px;
    }

    .lims-form-label {
        font-size: 15px;
        margin-bottom: 9px;
    }

    .lims-input-group {
        margin-bottom: 22px;
    }

    .lims-input-icon {
        left: 20px;
        font-size: 18px;
    }

    .lims-login-card .form-control {
        height: 62px;
        border-radius: 20px;
        font-size: 16px;
        padding-left: 56px;
        background: rgba(255,255,255,0.82);
    }

    .lims-btn-login {
        height: 62px;
        border-radius: 18px !important;
        font-size: 18px !important;
        margin-top: 4px;
        box-shadow: 0 12px 24px rgba(7, 55, 99, 0.28);
    }

    .lims-forgot {
        margin-top: 24px;
    }

    .lims-forgot label {
        font-size: 15px;
    }

    .lims-login-footer {
        padding: 18px 16px;
        font-size: 13px;
        border-radius: 0 0 28px 28px;
    }
}

.workspace-grid {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 16px;
}

.panel {
    background: var(--aurix-panel);
    border: 1px solid var(--aurix-border);
    border-radius: 8px;
}

.panel-header {
    border-bottom: 1px solid var(--aurix-border);
    padding: 14px 16px;
}

.panel-titlebar {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.panel-title-block {
    min-width: 0;
}

.panel-toolbar {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
    justify-content: flex-end;
}

.catalog-actions {
    display: flex;
    gap: 8px;
}

.panel-body {
    padding: 16px;
}

.group-list {
    max-height: calc(100vh - 230px);
    overflow: auto;
}

.group-item {
    border: 1px solid var(--aurix-border);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}

.group-item:hover,
.group-item.active {
    background: #eef7fa;
    border-color: var(--aurix-primary);
}

.metric {
    border-left: 4px solid var(--aurix-primary);
    background: #f8fafb;
    border-radius: 8px;
    padding: 10px 12px;
}

.metric-label {
    color: var(--aurix-muted);
    font-size: 12px;
}

.metric-value {
    font-weight: 800;
    font-size: 18px;
}

.color-dot {
    width: 14px;
    height: 14px;
    display: inline-block;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .18);
    vertical-align: -2px;
}

.table thead th {
    background: #edf2f5;
    color: #31414f;
    font-size: 12px;
    text-transform: uppercase;
}

.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table thead tr:first-child th:first-child {
    border-top-left-radius: 8px;
}

.table thead tr:first-child th:last-child {
    border-top-right-radius: 8px;
}

.acopios-table {
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.view-switch {
    background: #edf4f7;
    border: 1px solid rgba(31, 111, 139, .16);
    border-radius: 8px;
    display: inline-grid;
    gap: 4px;
    grid-template-columns: repeat(2, minmax(102px, 1fr));
    padding: 4px;
}

.view-switch-button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: #526575;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 7px;
    justify-content: center;
    min-height: 34px;
    padding: 7px 12px;
}

.view-switch-button.active {
    background: #fff;
    box-shadow: 0 6px 16px rgba(18, 43, 57, .10);
    color: var(--aurix-primary-dark);
}

.blending-view {
    align-items: center;
    background: linear-gradient(180deg, #f8fafb 0%, #eef5f8 100%);
    border: 1px dashed rgba(31, 111, 139, .28);
    border-radius: 8px;
    color: #31414f;
    display: grid;
    min-height: 320px;
    place-items: center;
    text-align: center;
}

.acopio-filter-bar {
    align-items: end;
    background: linear-gradient(180deg, #f8fafb 0%, #eef5f8 100%);
    border: 1px solid rgba(31, 111, 139, .14);
    border-radius: 8px;
    display: grid;
    gap: 10px;
    grid-template-columns: 150px 150px minmax(180px, 1fr) 180px 118px;
    padding: 12px;
}

.acopio-filter-bar .form-label {
    color: #526575;
    font-weight: 700;
}

.estado-filter-button {
    border-color: #d6e0e8;
    color: #31414f;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.estado-filter-menu {
    border: 1px solid rgba(31, 111, 139, .18);
    border-radius: 8px;
    min-width: 190px;
    box-shadow: 0 14px 32px rgba(18, 43, 57, .12);
}

.estado-filter-option {
    align-items: center;
    border-radius: 6px;
    display: flex;
    gap: 8px;
    min-height: 34px;
}

.estado-filter-option span {
    font-size: 13px;
    font-weight: 700;
}

.acopios-table thead tr:first-child th {
    background: linear-gradient(180deg, #1f6f8b 0%, #154f66 100%);
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
    font-weight: 800;
    letter-spacing: .02em;
    text-align: center;
    vertical-align: middle;
}

.acopios-table thead tr:first-child th:first-child {
    border-top-left-radius: 8px;
}

.acopios-table thead tr:first-child th:last-child {
    border-top-right-radius: 8px;
}

.acopios-table thead tr:nth-child(2) th {
    background: linear-gradient(180deg, #e8f3f7 0%, #d8e8ee 100%);
    border-color: rgba(31, 111, 139, .22);
    color: #154f66;
    font-weight: 800;
    text-align: center;
    vertical-align: middle;
}

.acopios-table th,
.acopios-table td {
    border-color: rgba(31, 111, 139, .16);
}

.acopios-table tbody td {
    border-bottom: 1px solid rgba(31, 111, 139, .14);
    border-right: 1px solid rgba(31, 111, 139, .10);
    vertical-align: middle;
}

.acopios-table tbody tr:hover td {
    background: rgba(232, 243, 247, .45);
}

.registro-cell {
    display: grid;
    gap: 1px;
    min-width: 112px;
}

.registro-cell strong {
    color: #122b39;
    font-size: 12px;
}

.registro-cell span,
.registro-cell small {
    color: #526575;
    font-size: 11px;
    line-height: 1.15;
}

.acopio-actions .btn span {
    display: none;
}

.btn-primary {
    --bs-btn-bg: var(--aurix-primary);
    --bs-btn-border-color: var(--aurix-primary);
    --bs-btn-hover-bg: var(--aurix-primary-dark);
    --bs-btn-hover-border-color: var(--aurix-primary-dark);
}

.empty-state {
    min-height: 260px;
    display: grid;
    place-items: center;
    color: var(--aurix-muted);
    text-align: center;
}

.modal-header-aurix {
    background:
        linear-gradient(135deg, rgba(31,111,139,.98), rgba(21,79,102,.96)),
        linear-gradient(90deg, rgba(201,162,39,.28), transparent);
    border-bottom: 3px solid var(--aurix-accent);
    color: #fff;
}

.modal-header-aurix .btn-close {
    filter: invert(1) grayscale(1) brightness(2);
    opacity: .9;
}

.modal-header-aurix .modal-title {
    color: #fff;
    font-weight: 800;
}

.modal-eyebrow {
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .workspace-grid {
        grid-template-columns: 1fr;
    }

    .group-list {
        max-height: none;
    }
}

@media (max-width: 640px) {
    html,
    body {
        width: 100%;
        min-width: 100%;
    }

    body {
        font-size: 13px;
    }

    .app-shell {
        width: 100%;
        min-width: 100%;
    }

    .topbar {
        position: sticky;
        top: 0;
        z-index: 1040;
        width: 100vw;
        min-width: 100vw;
    }

    .topbar .container-fluid {
        padding: 10px 12px !important;
        width: 100%;
        max-width: none;
    }

    .topbar .d-flex {
        gap: 8px !important;
        min-width: 0;
    }

    .brand-logo {
        display: none;
    }

    .topbar h1 {
        font-size: 14px;
        max-width: 118px;
        line-height: 1.15;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .topbar .small {
        font-size: 11px;
    }

    .topbar .btn {
        flex: 0 0 auto;
        min-width: 38px;
        min-height: 38px;
        padding: 6px 8px;
    }

    #btnNuevoGrupo,
    #btnNuevoAcopio {
        font-size: 0;
    }

    #btnNuevoGrupo i,
    #btnNuevoAcopio i {
        font-size: 16px;
        margin: 0 !important;
    }

    .app-main {
        padding: 10px !important;
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .workspace-grid {
        gap: 10px;
    }

    .panel {
        border-radius: 8px;
    }

    .panel-header,
    .panel-body {
        padding: 12px;
    }

    .panel-titlebar {
        align-items: flex-start;
        gap: 10px;
    }

    .panel-toolbar {
        align-items: flex-end;
        flex-direction: column;
        gap: 8px;
    }

    .catalog-actions {
        order: 2;
    }

    .catalog-actions .btn {
        min-height: 34px;
        min-width: 34px;
        padding: 5px 8px;
    }

    .group-list {
        display: flex !important;
        gap: 8px !important;
        overflow-x: auto;
        padding-bottom: 2px;
        scroll-snap-type: x mandatory;
    }

    .group-item {
        min-width: 260px;
        scroll-snap-align: start;
    }

    #summaryRow {
        --bs-gutter-x: .5rem;
        --bs-gutter-y: .5rem;
    }

    .metric {
        padding: 9px 10px;
    }

    .metric-label {
        font-size: 11px;
    }

    .metric-value {
        font-size: 16px;
    }

    .view-switch {
        order: 1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 184px;
    }

    .view-switch-button {
        font-size: 12px;
        gap: 5px;
        min-height: 32px;
        padding: 6px 8px;
    }

    .acopio-filter-bar {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 10px;
    }

    .acopio-filter-bar > div:nth-child(3),
    .acopio-filter-bar > div:nth-child(5) {
        grid-column: 1 / -1;
    }

    .acopios-table-wrap {
        overflow: visible;
    }

    .acopios-table {
        display: block;
    }

    .acopios-table thead {
        display: none;
    }

    .acopios-table tbody {
        display: grid;
        gap: 10px;
    }

    .acopios-table tr {
        display: grid;
        grid-template-columns: 72px 1fr 1fr;
        gap: 8px 12px;
        padding: 12px;
        border: 1px solid var(--aurix-border);
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 6px 16px rgba(18, 43, 57, .05);
    }

    .acopios-table td {
        border: 0;
        padding: 0;
        text-align: left !important;
        min-width: 0;
    }

    .acopios-table td::before {
        content: attr(data-label);
        display: block;
        color: var(--aurix-muted);
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 2px;
    }

    .acopios-table .acopio-code {
        grid-column: 2 / -1;
        font-size: 16px;
    }

    .acopios-table td[data-label="Item"] {
        grid-row: span 2;
        align-self: stretch;
        display: grid;
        place-items: center;
        border-radius: 8px;
        background: linear-gradient(180deg, #e8f3f7 0%, #f8fafb 100%);
        color: var(--aurix-primary-dark);
        font-size: 18px;
    }

    .acopios-table td[data-label="Registro"] {
        grid-column: 1 / -1;
        border-top: 1px solid rgba(31, 111, 139, .12);
        padding-top: 8px;
    }

    .registro-cell {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        min-width: 0;
    }

    .acopios-table .acopio-actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .acopios-table .acopio-actions-archived {
        grid-template-columns: 1fr;
    }

    .acopio-actions .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 38px;
    }

    .acopio-actions .btn span {
        display: inline;
    }

    .modal-dialog {
        margin: 0;
        max-width: none;
        width: 100vw;
        height: 100dvh;
        min-height: 100dvh;
    }

    .modal-content {
        border-radius: 0;
        min-height: 100dvh;
        height: 100dvh;
        width: 100vw;
        max-width: 100vw;
    }

    .modal-header {
        position: sticky;
        top: 0;
        z-index: 2;
        background: #fff;
    }

    .modal-body {
        overflow-y: auto;
        padding-bottom: 96px;
        flex: 1 1 auto;
    }

    .modal-footer {
        position: sticky;
        bottom: 0;
        z-index: 2;
        background: #fff;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .modal-footer > * {
        width: 100%;
        margin: 0 !important;
    }

    #modalAcopio .row.g-3 > [class*="col-"],
    #modalAcopio .row.g-3.mt-2 > [class*="col-"] {
        flex: 0 0 auto;
        width: 100%;
    }
}
