.vue-unis {
    width: 100%;
    height: 100%;
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    gap: 8px;
    color: #666;
    font-family: arial, helvetica, verdana, sans-serif;
    font-size: 12px;
}

.vue-unis-menu,
.vue-unis-content {
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
}

.vue-unis-menu {
    width: 96px;
    flex: 0 0 96px;
    align-self: flex-start;
}

.vue-unis-menu-item {
    width: 100%;
    min-height: 52px;
    padding: 8px 14px;
    border: 0;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    background: #fff;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font: inherit;
    line-height: 16px;
    text-align: left;
    cursor: pointer;
}

.vue-unis-menu-item > span:last-child {
    max-width: 100%;
    white-space: normal;
}

.vue-unis-menu-item:last-child {
    border-bottom: 0;
}

.vue-unis-menu-item:hover:not(.selected) {
    background: #f7f7f7;
}

.vue-unis-menu-item.selected {
    background: #dff3fb;
    color: #00517d;
}

.vue-unis-menu-icon {
    width: 16px;
    height: 16px;
    color: inherit;
}

.vue-unis-menu-icon svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vue-unis-content {
    min-width: 0;
    min-height: 0;
    flex: 1 1 auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.vue-unis-content-title {
    color: #4b4a36;
    font-weight: bold;
    margin-bottom: 16px;
}

.vue-unis-field {
    display: flex;
    align-items: center;
}

.vue-unis-label {
    width: 165px;
    font-weight: bold;
}

.vue-unis-submenu {
    margin: -14px -14px 0;
    position: sticky;
    top: -14px;
    z-index: 1;
    flex: 0 0 auto;
    background: #fff;
}

.vue-unis-submenu button {
    padding: 10px 14px 8px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: #fff;
    color: #666;
    font: inherit;
    cursor: pointer;
}

.vue-unis-submenu button.selected {
    border-bottom-color: #00517d;
    background: #dff3fb;
    color: #00517d;
}

.vue-unis-product-body {
    min-height: 0;
    max-width: 760px;
    flex: 1 1 auto;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
}

.vue-unis-slot-editor-body {
    min-height: 0;
    max-width: 760px;
    flex: 1 1 auto;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
}

.vue-unis-slot-editor-body h2 {
    margin: 0 0 6px;
    color: #2f2f2f;
    font-size: 18px;
    line-height: 22px;
}

.vue-unis-errors-body {
    width: min(760px, 100%);
    min-height: 0;
    flex: 1 1 auto;
    padding-top: 18px;
    box-sizing: border-box;
    color: #333;
    overflow-y: auto;
}

.vue-unis-errors-body h2 {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 22px;
}

.vue-unis-errors-heading {
    min-height: 28px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vue-unis-errors-heading h3 {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
}

.vue-unis-errors-grid {
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow-x: auto;
}

.vue-unis-errors-grid table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    table-layout: fixed;
}

.vue-unis-errors-grid th,
.vue-unis-errors-grid td {
    padding: 9px 10px;
    border-bottom: 1px solid #e5e5e5;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    text-align: left;
    vertical-align: top;
}

.vue-unis-errors-grid th {
    border-bottom-color: #aaa;
    font-weight: bold;
}

.vue-unis-errors-grid th:first-child,
.vue-unis-errors-grid td:first-child {
    width: 160px;
}

.vue-unis-errors-grid th:nth-child(2),
.vue-unis-errors-grid td:nth-child(2) {
    width: 100px;
}

.vue-unis-errors-grid tbody tr:last-child td {
    border-bottom: 0;
}

.vue-unis-errors-grid .vue-unis-errors-status {
    padding: 24px 10px;
    color: #777;
    text-align: center;
}

.vue-unis-errors-pagination {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vue-unis-errors-page-item {
    display: flex;
}

.vue-unis-errors-pagination button.vue-unis-errors-ellipsis {
    min-width: 20px;
    padding: 0 2px;
    border-color: transparent;
    text-align: center;
}

.vue-unis-errors-pagination button.vue-unis-errors-ellipsis:not(:disabled):hover {
    border-color: #bbb;
}

.vue-unis-errors-pagination button {
    min-width: 30px;
    height: 28px;
    padding: 0 8px;
    border: 1px solid #bbb;
    border-radius: 3px;
    background: #fff;
    color: #555;
    font: inherit;
    cursor: pointer;
}

.vue-unis-errors-pagination button.selected {
    border-color: #00517d;
    background: #dff3fb;
    color: #00517d;
}

.vue-unis-errors-pagination button:disabled {
    color: #aaa;
    cursor: default;
}

.vue-unis-errors-pagination button:focus {
    outline: 2px solid #00c7d4;
    outline-offset: 1px;
}

.vue-unis-payment-body {
    width: min(480px, 100%);
    min-height: 0;
    flex: 1 1 auto;
    padding-top: 18px;
    box-sizing: border-box;
    color: #333;
    overflow-y: auto;
}

.vue-unis-payment-body h2 {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 22px;
}

.vue-unis-payment-status {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #777;
}

.vue-unis-payment-status button {
    padding: 5px 12px;
    border: 1px solid #bbb;
    border-radius: 3px;
    background: #fff;
    color: #555;
    font: inherit;
    cursor: pointer;
}

.vue-unis-payment-form {
    display: grid;
    gap: 8px;
}

.vue-unis-payment-field {
    padding: 5px 7px;
    border-left: 3px solid transparent;
    border-radius: 3px;
    box-sizing: border-box;
    display: grid;
    gap: 6px;
}

.vue-unis-payment-field.dirty {
    border-left-color: #d5a72e;
    background: #fff4cf;
}

.vue-unis-payment-field label {
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
}

.vue-unis-payment-label-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vue-unis-payment-help-button,
.vue-unis-payment-help-symbol {
    width: 18px;
    height: 18px;
    border: 2px solid #e00020;
    border-radius: 50%;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: #fff;
    color: #e00020;
    font-family: inherit;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.vue-unis-payment-help-button {
    padding: 0;
    cursor: pointer;
}

.vue-unis-payment-help-button:focus {
    outline: 2px solid #00c7d4;
    outline-offset: 2px;
}

.vue-unis-payment-help-dialog {
    width: min(520px, 100%);
    padding: 22px 25px 25px;
    border-radius: 10px;
    box-sizing: border-box;
    background: #fff;
    color: #292929;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.vue-unis-payment-help-header {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 12px;
}

.vue-unis-payment-help-header .vue-unis-payment-help-symbol {
    width: 32px;
    height: 32px;
    font-size: 21px;
    font-weight: normal;
}

.vue-unis-payment-help-header h2 {
    margin: 0;
    font-size: 20px;
    line-height: 26px;
}

.vue-unis-payment-help-dialog p {
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 23px;
}

.vue-unis-unsaved-dialog {
    width: min(420px, 100%);
    padding: 18px 20px 20px;
    border-radius: 8px;
    box-sizing: border-box;
    background: #fff;
    color: #292929;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.vue-unis-unsaved-header {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 10px;
}

.vue-unis-unsaved-symbol {
    width: 26px;
    height: 26px;
    border: 2px solid #d54141;
    border-radius: 50%;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d54141;
    font-size: 17px;
    line-height: 1;
}

.vue-unis-unsaved-header h2 {
    margin: 0;
    font-size: 18px;
    line-height: 22px;
}

.vue-unis-unsaved-dialog p {
    margin: 18px 0 26px;
    font-size: 14px;
    line-height: 20px;
}

.vue-unis-unsaved-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.vue-unis-unsaved-actions button {
    min-width: 82px;
    height: 34px;
    padding: 0 16px;
    border: 1px solid #aaa;
    border-radius: 17px;
    background: #fff;
    color: #292929;
    font: inherit;
    cursor: pointer;
}

.vue-unis-unsaved-actions .vue-unis-unsaved-leave {
    border-color: #00517d;
    background: #00517d;
    color: #fff;
}

.vue-unis-unsaved-actions button:focus {
    outline: 2px solid #00c7d4;
    outline-offset: 2px;
}

@media (max-width: 600px) {
    .vue-unis-payment-help-dialog {
        padding: 20px;
    }

    .vue-unis-payment-help-header h2 {
        font-size: 18px;
        line-height: 23px;
    }

    .vue-unis-payment-help-dialog p {
        font-size: 15px;
        line-height: 21px;
    }

    .vue-unis-unsaved-dialog {
        padding: 16px;
    }

    .vue-unis-unsaved-dialog p {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 20px;
    }
}

.vue-unis-payment-toggle-field {
    min-height: 46px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.vue-unis-payment-toggle {
    width: 52px;
    height: 28px;
    padding: 2px;
    border: 0;
    border-radius: 14px;
    box-sizing: border-box;
    background: #aaa;
    cursor: pointer;
    transition: background 120ms ease;
}

.vue-unis-payment-toggle span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: block;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
    transition: transform 120ms ease;
}

.vue-unis-payment-toggle.selected {
    background: #00517d;
}

.vue-unis-payment-toggle.selected span {
    transform: translateX(24px);
}

.vue-unis-payment-toggle:disabled {
    cursor: default;
    opacity: 0.7;
}

.vue-unis-payment-field select {
    width: 100%;
    height: 36px;
    padding: 0 34px 0 14px;
    border: 1px solid #bbb;
    border-radius: 18px;
    box-sizing: border-box;
    background: #fff;
    color: #333;
    font: inherit;
}

.vue-unis-payment-save-error {
    padding: 6px 8px;
    color: #a22424;
}

.vue-unis-payment-actions {
    min-height: 34px;
    padding: 0 7px 6px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.vue-unis-payment-actions button {
    min-width: 82px;
    height: 34px;
    padding: 0 16px;
    border: 1px solid #aaa;
    border-radius: 17px;
    background: #fff;
    color: #333;
    font: inherit;
    cursor: pointer;
}

.vue-unis-payment-actions .vue-unis-payment-save {
    border-color: #00517d;
    background: #00517d;
    color: #fff;
}

.vue-unis-payment-actions button:disabled {
    border-color: #ccc;
    background: #eee;
    color: #999;
    cursor: default;
}

.vue-unis-payment-toggle:focus,
.vue-unis-payment-field select:focus,
.vue-unis-payment-status button:focus,
.vue-unis-payment-actions button:focus {
    outline: 2px solid #00c7d4;
    outline-offset: 2px;
}

.vue-unis-transactions-body {
    min-width: 0;
    min-height: 0;
    flex: 1 1 auto;
    color: #333;
    overflow: auto;
}

.vue-unis-transactions-heading {
    min-width: 680px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vue-unis-transactions-heading h2 {
    margin: 0;
    font-size: 18px;
    line-height: 22px;
}

.vue-unis-transactions-grid {
    min-width: 680px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.vue-unis-transactions-grid table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.vue-unis-transactions-grid th,
.vue-unis-transactions-grid td {
    padding: 8px 7px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    text-align: left;
    vertical-align: middle;
}

.vue-unis-transactions-grid th {
    border-bottom-color: #aaa;
    font-weight: bold;
    white-space: nowrap;
}

.vue-unis-transactions-grid th:first-child {
    width: 155px;
}

.vue-unis-transactions-grid th:nth-child(3) {
    width: 90px;
}

.vue-unis-transactions-grid th:nth-child(4) {
    width: 54px;
}

.vue-unis-transactions-grid th:nth-child(5) {
    width: 105px;
}

.vue-unis-transactions-grid th:nth-child(6) {
    width: 115px;
}

.vue-unis-transactions-grid .vue-unis-transactions-number {
    text-align: right;
}

.vue-unis-transactions-grid th:last-child,
.vue-unis-transactions-grid td:last-child {
    border-right: 0;
}

.vue-unis-transactions-grid tbody tr:last-child td {
    border-bottom: 0;
}

.vue-unis-transactions-grid tr.transaction-start:not(:first-child) td {
    border-top: 1px solid #cfcfcf;
}

.vue-unis-transactions-status {
    height: 80px;
    color: #777;
    text-align: center !important;
}

.vue-unis-slot-editor {
    min-height: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.vue-unis-slot-matrix {
    width: max-content;
    max-width: 100%;
    padding: 4px 4px 10px;
    overflow: auto;
    user-select: none;
}

.vue-unis-slot-matrix-row {
    display: grid;
    grid-template-columns: 24px repeat(10, 42px);
    gap: 6px;
    margin-bottom: 6px;
}

.vue-unis-slot-matrix-header {
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
    text-align: center;
}

.vue-unis-slot-row-label {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: bold;
}

.vue-unis-slot-matrix-cell {
    width: 42px;
    height: 48px;
    padding: 0;
    border: 1px solid #c8c8c8;
    border-radius: 5px;
    background: #eee;
    cursor: pointer;
}

.vue-unis-slot-matrix-cell.available {
    border-color: #1674a5;
    background: #dff3fb;
    cursor: pointer;
}

.vue-unis-slot-matrix-cell.selected {
    border-color: #00a8b5;
    background: #00c7d4;
}

.vue-unis-slot-matrix-cell.dirty {
    border-color: #d5a72e;
    box-shadow: inset 0 0 0 2px #ffdc73;
}

.vue-unis-slot-matrix-cell.selected.dirty {
    border-color: #00517d;
    box-shadow: inset 0 0 0 2px #ffdc73;
}

.vue-unis-slot-matrix-cell:focus {
    outline: 2px solid #00517d;
    outline-offset: 2px;
}

.vue-unis-slot-edit-dialog {
    width: min(360px, 100%);
}

.vue-unis-slot-edit-content {
    padding: 2px 17px 10px;
    display: grid;
    gap: 16px;
}

.vue-unis-slot-edit-content fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.vue-unis-slot-edit-content legend,
.vue-unis-slot-edit-content label > span {
    margin-bottom: 6px;
    display: block;
    color: #333;
    font-size: 13px;
    font-weight: bold;
}

.vue-unis-slot-edit-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.vue-unis-slot-edit-options button {
    padding: 7px 12px;
    border: 1px solid #bbb;
    background: #fff;
    color: #333;
    font: inherit;
    cursor: pointer;
}

.vue-unis-slot-edit-options button:first-child {
    border-radius: 16px 0 0 16px;
}

.vue-unis-slot-edit-options button:last-child {
    margin-left: -1px;
    border-radius: 0 16px 16px 0;
}

.vue-unis-slot-edit-options button.selected {
    position: relative;
    border-color: #00517d;
    background: #dff3fb;
    color: #00517d;
}

.vue-unis-slot-edit-content select {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #bbb;
    border-radius: 16px;
    box-sizing: border-box;
    background: #fff;
    color: #333;
    font: inherit;
}

.vue-unis-slot-grid {
    min-height: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.vue-unis-product-body h2 {
    margin: 0 0 6px;
    flex: 0 0 auto;
    color: #2f2f2f;
    font-size: 18px;
    line-height: 22px;
}

.vue-unis-product-help {
    margin: 0 0 6px;
    flex: 0 0 auto;
    overflow: hidden;
    color: #707070;
    font-size: 13px;
    line-height: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vue-unis-slots-status {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

.vue-unis-loader {
    width: 14px;
    height: 14px;
    border: 2px solid #c8c8c8;
    border-top-color: #00517d;
    border-radius: 50%;
    box-sizing: border-box;
    animation: vue-unis-spin 0.8s linear infinite;
}

@keyframes vue-unis-spin {
    to {
        transform: rotate(360deg);
    }
}

.vue-unis-product-actions {
    position: sticky;
    top: 24px;
    z-index: 2;
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
    padding-bottom: 10px;
    background: #fff;
}

.vue-unis-product-actions button {
    min-width: 72px;
    padding: 6px 12px;
    border: 1px solid #bbb;
    border-radius: 16px;
    box-sizing: border-box;
    flex: 0 1 100px;
    background: #fff;
    color: #333;
    font: inherit;
    cursor: pointer;
}

.vue-unis-product-actions .vue-unis-clear-selection {
    flex: 0 0 auto;
    white-space: nowrap;
}

.vue-unis-product-actions button.selected {
    border-color: #00c7d4;
    background: #00c7d4;
    color: #fff;
}

.vue-unis-product-actions button:disabled {
    border-color: #d5d5d5;
    background: #f3f3f3;
    color: #aaa;
    cursor: default;
}

.vue-unis-product-actions .vue-unis-save {
    border-color: #00517d;
    background: #00517d;
    color: #fff;
}

.vue-unis-product-actions .vue-unis-save:disabled {
    border-color: #00517d;
    background: #00517d;
    color: #fff;
    opacity: 0.72;
}

.vue-unis-save-loader {
    width: 10px;
    height: 10px;
    margin-right: 5px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: -1px;
    animation: vue-unis-spin 0.8s linear infinite;
}

.vue-unis-trays {
    min-height: 0;
    flex: 1 1 auto;
    padding-bottom: 4px;
    overflow: auto;
    scrollbar-gutter: stable;
}

.vue-unis-tray {
    width: max-content;
    min-width: 220px;
    margin-bottom: 10px;
    padding: 10px 12px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.vue-unis-tray-header {
    min-height: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vue-unis-tray-header h3 {
    margin: 0;
    color: #333;
    font-size: 14px;
    font-weight: normal;
}

.vue-unis-tray-header button {
    padding: 4px 10px;
    border: 0;
    border-radius: 12px;
    background: #707070;
    color: #fff;
    font-family: inherit;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
}

.vue-unis-tray-header button.selected {
    background: #00c7d4;
}

.vue-unis-slots {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 110px;
    gap: 8px;
    margin-top: 4px;
}

.vue-unis-slot {
    min-height: 145px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    cursor: pointer;
}

.vue-unis-slot.selected {
    border-color: #00c7d4;
    background: #00c7d4;
    color: #fff;
}

.vue-unis-slot.dirty {
    border-color: #e2bd5b;
    background: #ffedb8;
    color: #333;
}

.vue-unis-slot.selected.dirty {
    border-color: #00c7d4;
    background: #00c7d4;
    color: #fff;
}

.vue-unis-slot.selected .vue-unis-product-desc {
    color: #fff;
}

.vue-unis-slot:focus,
.vue-unis-tray-header button:focus,
.vue-unis-product-actions button:focus {
    outline: 2px solid #00517d;
    outline-offset: 2px;
}

.vue-unis-slot-name {
    width: 100%;
    margin-bottom: 8px;
    font-size: 13px;
    text-align: left;
}

.vue-unis-product-image {
    width: 64px;
    height: 64px;
    margin-bottom: 6px;
    flex: 0 0 64px;
}

.vue-unis-product-image img,
.vue-unis-no-image {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    box-sizing: border-box;
    display: block;
}

.vue-unis-product-image img {
    object-fit: contain;
}

.vue-unis-no-image {
    border: 1px solid #d3d3d3;
    background: #f5f5f5;
    color: #999;
    font-size: 10px;
    line-height: 62px;
    text-align: center;
}

.vue-unis-product-name,
.vue-unis-product-desc {
    width: 100%;
    min-width: 0;
    max-height: 45px;
    display: -webkit-box;
    overflow: hidden;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    line-height: 15px;
    text-overflow: ellipsis;
    text-align: center;
}

.vue-unis-product-desc {
    margin: 4px 0 auto;
    color: #888;
}

.vue-unis-inventory-count {
    font-size: 15px;
    line-height: 20px;
}

.vue-unis-revision-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.18);
}

.vue-unis-revision-dialog {
    width: min(380px, 100%);
    max-height: calc(100vh - 24px);
    border-radius: 10px;
    box-sizing: border-box;
    background: #fff;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.vue-unis-product-revision-dialog {
    width: min(420px, 100%);
}

.vue-unis-revision-header {
    padding: 15px 17px 10px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
}

.vue-unis-revision-header h2 {
    margin: 0;
    font-size: 20px;
    line-height: 25px;
}

.vue-unis-revision-close {
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #333;
    font-family: inherit;
    font-size: 26px;
    font-weight: 300;
    line-height: 21px;
    cursor: pointer;
}

.vue-unis-revision-content {
    padding: 0 17px 12px;
}

.vue-unis-selected-slots {
    min-height: 24px;
    margin-top: 6px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    color: #737373;
    font-size: 14px;
    line-height: 20px;
}

.vue-unis-selected-slots strong {
    min-width: 0;
    font-weight: normal;
    overflow-wrap: anywhere;
    text-align: right;
    white-space: normal;
}

.vue-unis-revision-value {
    width: 52px;
    min-height: 34px;
    margin: 4px auto 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
}

.vue-unis-slider-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 10px;
}

.vue-unis-slider-row button {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #bbb;
    border-radius: 50%;
    background: #fff;
    color: #555;
    font-family: inherit;
    font-size: 20px;
    line-height: 30px;
    cursor: pointer;
}

.vue-unis-slider-row input {
    width: 100%;
    height: 18px;
    accent-color: #00517d;
    cursor: pointer;
}

.vue-unis-product-revision-form {
    margin-top: 8px;
    display: grid;
    gap: 10px;
}

.vue-unis-image-select {
    width: 100%;
    padding: 7px 14px;
    border: 1px solid #bbb;
    border-radius: 18px;
    background: #fff;
    color: #333;
    font: inherit;
    cursor: pointer;
}

.vue-unis-image-select:disabled {
    cursor: wait;
    opacity: .65;
}

.vue-unis-image-upload-error {
    color: #a31621;
    font-size: 13px;
}

.vue-unis-selected-image {
    min-height: 58px;
    padding: 7px 10px;
    border: 1px solid #ccc;
    border-radius: 7px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 10px;
}

.vue-unis-selected-image img {
    width: 48px;
    height: 48px;
    border-radius: 5px;
    object-fit: contain;
}

.vue-unis-selected-image span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vue-unis-selected-image button {
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #333;
    font: inherit;
    font-size: 20px;
    cursor: pointer;
}

.vue-unis-product-revision-form label {
    display: grid;
    gap: 4px;
    color: #333;
    font-size: 13px;
    font-weight: bold;
}

.vue-unis-product-revision-form label > input,
.vue-unis-price-input input,
.vue-unis-product-revision-form select,
.vue-unis-product-revision-form textarea {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #ccc;
    border-radius: 18px;
    box-sizing: border-box;
    color: #333;
    font: inherit;
    font-weight: normal;
}

.vue-unis-price-input {
    position: relative;
    display: block;
    font-weight: normal;
}

.vue-unis-price-input > span {
    position: absolute;
    left: 11px;
    top: 50%;
    z-index: 1;
    color: #555;
    transform: translateY(-50%);
    pointer-events: none;
}

.vue-unis-price-input input {
    padding-left: 23px;
}

.vue-unis-price-input input[readonly] {
    background: #f4f4f4;
    color: #555;
}

.vue-unis-product-revision-form textarea {
    min-height: 72px;
    border-radius: 8px;
    resize: vertical;
}

.vue-unis-revision-footer {
    padding: 10px 17px 15px;
    background: #fff;
}

.vue-unis-revision-done {
    width: 100%;
    padding: 7px 16px;
    border: 0;
    border-radius: 18px;
    background: #00517d;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    line-height: 20px;
    cursor: pointer;
}

.vue-unis-revision-done:disabled {
    background: #b8c7cf;
    cursor: default;
}

.vue-unis-revision-close:focus,
.vue-unis-slider-row button:focus,
.vue-unis-slider-row input:focus,
.vue-unis-image-select:focus,
.vue-unis-selected-image button:focus,
.vue-unis-product-revision-form input:focus,
.vue-unis-product-revision-form select:focus,
.vue-unis-product-revision-form textarea:focus,
.vue-unis-revision-done:focus {
    outline: 2px solid #00c7d4;
    outline-offset: 2px;
}

@media (max-width: 540px) {
    .vue-unis-revision-header h2 {
        font-size: 18px;
        line-height: 24px;
    }
}