html {
    font-size: 14px;
}


.container {
    max-width: 2370px;
}

@media (min-width: 1400px) {
    .container {
        width: 1370px;
    }
}

@media (min-width: 1600px) {
    .container {
        width: 1570px;
    }
}

@media (min-width: 1800px) {
    .container {
        width: 1770px;
    }
}

@media (min-width: 2000px) {
    .container {
        width: 1970px;
    }
}

@media (min-width: 2200px) {
    .container {
        width: 2170px;
    }
}

@media (min-width: 2400px) {
    .container {
        width: 2370px;
    }
}


@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

[v-cloak] {
    display: none;
}

.test_peter {
    color: green;
}

.checkmark {
    display: inline-block;
    width: 22px;
    height: 22px;
    -ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
    transform: rotate(45deg);
}

.checkmark_circle {
    /*position: absolute;*/
    width: 22px;
    height: 22px;
    background-color: green;
    color: white;
    border-radius: 11px;
    left: 0;
    top: 0;
    text-align: center;
}

.quantity-input {
    width: 120px;
    float: right;
}

.btn-primary {
    background-color: navy; /* new primary color */
    border-color: navy;
}

    .btn-primary:hover {
        background-color: navy;
        border-color: navy;
    }

.bg-primary {
    background-color: navy !important;
    border-color: navy;
}

.card-header {
    background-color: navy !important;
    color: white;
}

.btn-primary:disabled {
    background-color: navy !important; /* Your desired color */
    border-color: navy !important;
    color: white; /* Ensure text is readable */
}
.btn-info {
    background-color: #82D9E5; /* new primary color */
    border-color: #82D9E5;
}

    .btn-info:hover {
        background-color: #82D9E5; /* new primary color */
        border-color: #82D9E5;
    }

    .btn-info:disabled {
        background-color: #82D9E5 !important; /* Your desired color */
        border-color: #82D9E5 !important;
        color: black; /* Ensure text is readable */
    }
/* For Chrome, Safari, Edge, and other WebKit browsers */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* Base table styling */
.order-table {
    display: flex;
    flex-direction: column;
    border: 1px solid navy;
    border-radius: 4px;
    overflow: hidden;
    font-size: 14px;
}

/* Row styling */
.order-table-row {
    display: flex;
    width: 100%;
}

/* Header styling */
.order-table-header {
    background-color: #cfe2ff; /* Bootstrap primary color */
    color: black;
    font-weight: bold;
}

/* Cell styling */
.order-table-cell {
    flex: 1;
    padding: 8px 12px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
}

/* Remove borders for last cell and last row */
.order-table-row:last-child .order-table-cell {
    border-bottom: none;
}

.order-table-cell:last-child {
    border-right: none;
}

/* Striped rows */
.striped {
    background-color: #f8f9fa; /* Bootstrap's light gray */
}

/* Column width adjustment */
.col-supply {
    flex: 2; /* Similar to col-md-8 */
}

.col-packs {
    flex: 1; /* Similar to col-md-4 */
}

.hidden-div {
    display: none;
}

.cf-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: inherit;
}

.cf-spinner {
    width: 54px;
    height: 54px;
    border: 6px solid #e9ecef;
    border-top-color: #0d6efd; /* falls back nicely even on BS3 */
    border-radius: 50%;
    animation: cf-spin 1s linear infinite;
    margin-bottom: 12px;
}

@keyframes cf-spin {
    to {
        transform: rotate(360deg);
    }
}