* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea {
    direction: rtl;
    font-family: "Vazirmatn FD NL", tahoma, sans-serif;
}

main {
    display: flex;
    min-height: 100vh;
    height: auto;
}

li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

.font-small {
    font-size: 10px;
}

.flex {
    display: flex;
}

select {
    padding: 10px 16px;
    font-size: 16px;
    border: 2px solid #888;
    border-radius: 8px;
    background-color: #f8f9fa;
    color: #333;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

select:hover {
    border-color: #555;
}

select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

option {
    background: #fff;
    color: #000;
    padding: 8px;
    font-size: 16px;
}

.my-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}

.container {
    margin: 20px;
}

.bg-violet {
    background: #a100c9;
}

.bg-blue {
    background: #006ab1;
}

.bg-green {
    background: #279b59;
}

.bg-red {
    background: red;
}

.bg-gray {
    background: #ededed42 !important;
}
.w-300 {
    width: 300px;
}
.w-full {
    width: 100%;
}

.gap-5 {
    gap: 5px;
}
.px-10 {
    padding: 0 10px;
}
.p-10 {
    padding: 10px;
}
.flex-text-align-start {
    display: flex;
    align-items: start;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}
.flex-align-end {
    display: flex;
    align-items: flex-end;
}
.flex-space-between {
    display: flex;
    justify-content: space-between;
}
.flex-justify-center {
    display: flex;
    justify-content: center;
}
.flex-justify-start {
    display: flex;
    justify-content: flex-start !important;
}
.flex-align-center {
    display: flex;
    align-items: center;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-sm {
    font-size: 12px;
}
.text-lg {
    font-size: 30px;
}

/* start inputs */
input {
    border-radius: 5px;
    outline: 0;
    border: 1px solid darkgray;
    padding: 10px;
    font-size: 15px;
    width: 200px;
    max-width: 400px;
}

input[type="radio"] {
    width: 15px !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="password"],
input[type="number"] {
    direction: ltr;
}

input[type="number"] {
    direction: ltr;
}

input[type="number"]::placeholder {
    text-align: center;
}

/* end inputs */

/* start alerts */
.alert {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    border: 1px solid gray;
    padding: 20px 10px;
    border-radius: 10px;
}

.alert-danger {
    border-color: red;
    background: #ffabab;
}
/* end alerts */

/* start buttons */
.btn {
    font-family: "Vazirmatn FD NL", tahoma, sans-serif;
    background-color: #1a56db;
    border: 1px solid;
    color: white;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 10px;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
}

.btn:hover {
    background-color: RoyalBlue;
}

.btn.btn-success {
    background: #15803d;
}

.btn.btn-success:hover {
    background-color: #166534;
}

.btn.btn-danger {
    background: #b91c1c;
}

.btn.btn-danger:hover {
    background-color: #991b1b;
}

.btn-outline {
    color: black;
    border-color: #1a56db;
    background: #fff !important;
}

/* .btn-outline.active, */
.btn-outline:hover {
    background: #1a56db !important;
    color: #fff;
}

.icon-btn {
    border: 1px solid #f2f2f2;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

table .icon-btn {
    padding: 10px;
    border-radius: 5px;
}
/* end buttons */

/* start table */
.container-table {
    overflow-x: auto;
    margin: 20px 10px;
    border-radius: 5px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    text-align: center;
    padding: 14px;
    white-space: nowrap;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* end table */

.grid-col-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 25%;
    margin: 10px;
}

.grid-col-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
    margin: 10px;
}

.grid-col-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 10px;
    margin: 10px;
}

.grid-col-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 10px;
    margin: 10px;
}

.grid-col-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 10px;
    margin: 10px;
}

.grid-col-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    column-gap: 10px;
    margin: 10px;
}

.grid-row-full {
    grid-column: 1 / -1;
}

/* start chip */
.chip {
    display: inline-flex;
    flex-direction: row;
    background-color: #e5e5e5;
    border: none;
    cursor: default;
    height: 36px;
    outline: none;
    padding: 0;
    color: #333333;
    white-space: nowrap;
    align-items: center;
    border-radius: 16px;
    vertical-align: middle;
    text-decoration: none;
    justify-content: center;
    margin: 10px 0;
}

.chip-head {
    display: flex;
    position: relative;
    overflow: hidden;
    background-color: #32c5d2;
    font-size: 1.25rem;
    flex-shrink: 0;
    align-items: center;
    user-select: none;
    border-radius: 50%;
    justify-content: center;
    width: 36px;
    color: #fff;
    height: 36px;
    font-size: 20px;
    margin-right: -4px;
}

.chip-content {
    cursor: inherit;
    display: flex;
    align-items: center;
    user-select: none;
    white-space: nowrap;
    padding-left: 12px;
    padding-right: 12px;
}

.chip-svg:hover {
    color: #666666;
}
/* end chip */

/* start badge */
.badge {
    padding: 5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    width: fit-content;
    cursor: pointer;
}
.badge i {
    padding-left: 5px;
}
/* end badge */

/******************************************* END PUBLIC ********************************************/

.top {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.top a img {
    display: flex;
    cursor: pointer;
}

aside {
    width: 300px;
    background: #e5e7eb;
}

section {
    width: 100%;
    background: #f5f6f7;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px;
    height: 72px;
}

header > div {
    width: 33%;
    display: flex;
    text-align: center;
    justify-content: center;
}

header > div:first-child {
    justify-content: flex-start;
}

header > div:last-child {
    justify-content: flex-end;
}

.list-boxs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
}

.box {
    margin: 20px 10px;
    padding: 20px 10px;
    border-radius: 5px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

#reports .box {
    margin: 10px 0px !important;
}

#search-sku {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-top: 10px;
}

#search-sku form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

td#stock {
    width: 100px;
    text-align: right;
}

#show_first_character > span {
    width: 30px;
    height: 30px;
    background: pink;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    line-height: 25px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.stock-change-items {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.stock-change-items input {
    margin-left: 10px;
}

.stock-change-items label {
    width: 100%;
    padding: 15px;
    display: flex;
    cursor: pointer;
}

.stock-change-items > div:hover {
    background: rgb(234, 234, 234);
}

.stock-change-items > div {
    flex-grow: 1;
    border: 1px solid darkgray;
    margin: 20px 0;
    border-radius: 5px;
}

.stock-change-boxs {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.stock-change-box {
    display: flex;
    flex-grow: 1;
    text-align: center;
    flex-direction: column;
    width: 650px;
    padding: 15px;
    border: 1px solid darkgray;
    margin: 20px 0;
    border-radius: 5px;
    align-items: center;
}

.stock-change-box {
    transition: opacity 0.3s ease;
}

.stock-change-box input[type="text"] {
    margin: 20px;
    width: 80%;
    font-size: 14px;
}

.stock-change-box.increase {
    background: #bbf7d0;
    border-color: #166534;
}

.stock-change-box.decrease {
    background: #fecaca;
    border-color: #ef4444;
}

.stock-change-box p {
    margin: 15px 0;
}

.input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-icon img {
    margin: 0 5px;
    border: green;
    border-radius: 10px;
}

.container-login {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100dvh);
}

.container-login .box {
    background: #f7f7f7;
}

.container-login .box {
    width: 30%;
}

.container-login input {
    width: 75%;
}

.form-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.form-login img {
    margin: 20px 0;
}

/* start stock-level */
.stock-level {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    margin-left: 8px;
}
.stock-level-red {
    background: red;
    position: relative;
    top: 5px;
}
.stock-level-red::after {
    content: " ";
    border: 2px solid red;
    display: inline-flex;
    background: transparent;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -11px;
    left: 7px;
}

.stock-level-orange {
    background: gold;
}

.stock-level-green {
    background: green;
}
/* end stock-level */

/* start pagination */
nav[role="navigation"] {
    background: #fff;
    border: 1px solid #f2f2f2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding: 10px;
}

nav[role="navigation"] svg {
    width: 20px !important;
    border: 1px solid gray;
    position: relative;
    top: 5px;
    border-radius: 5px;
}

nav[role="navigation"] svg:first-child {
    rotate: 180deg;
}

nav[role="navigation"] div {
    text-align: center;
}
/* end pagination */

/* start circle */
.animated-circle {
    animation-name: fade-in-out;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

@keyframes fade-in-out {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}
/* end circle */

/* start background */
.bg-1 {
    background: rgb(255, 204, 204);
    background: linear-gradient(
        45deg,
        rgba(255, 204, 204, 1) 0%,
        rgba(204, 229, 255, 1) 100%
    );
}

.bg-2 {
    background: rgb(255, 255, 204);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 204, 1) 0%,
        rgba(204, 255, 229, 1) 100%
    );
}

.bg-3 {
    background: rgb(204, 255, 204);
    background: linear-gradient(
        135deg,
        rgba(204, 255, 204, 1) 0%,
        rgba(204, 204, 255, 1) 100%
    );
}

.bg-4 {
    background: rgb(204, 255, 255);
    background: linear-gradient(
        180deg,
        rgba(204, 255, 255, 1) 0%,
        rgba(255, 204, 255, 1) 100%
    );
}

.bg-5 {
    background: rgb(255, 229, 204);
    background: linear-gradient(
        225deg,
        rgba(255, 229, 204, 1) 0%,
        rgba(204, 255, 255, 1) 100%
    );
}

.bg-6 {
    background: rgb(229, 204, 255);
    background: linear-gradient(
        270deg,
        rgba(229, 204, 255, 1) 0%,
        rgba(255, 204, 204, 1) 100%
    );
}

.bg-7 {
    background: rgb(204, 229, 255);
    background: linear-gradient(
        315deg,
        rgba(204, 229, 255, 1) 0%,
        rgba(255, 255, 204, 1) 100%
    );
}

.bg-8 {
    background: rgb(255, 204, 229);
    background: linear-gradient(
        360deg,
        rgba(255, 204, 229, 1) 0%,
        rgba(204, 255, 204, 1) 100%
    );
}

.bg-9 {
    background: rgb(204, 255, 229);
    background: linear-gradient(
        45deg,
        rgba(204, 255, 229, 1) 0%,
        rgba(229, 204, 255, 1) 100%
    );
}

.bg-10 {
    background: rgb(255, 229, 255);
    background: linear-gradient(
        90deg,
        rgba(255, 229, 255, 1) 0%,
        rgba(204, 204, 255, 1) 100%
    );
}

/* end background */

/* start elevator */
.elevator {
    position: fixed;
    height: 35px;
    width: 35px;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.elevator.visible {
    display: flex;
    opacity: 1;
}

/* end elevator */

/* start sidebar */
#open-sidebar,
#close-sidebar {
    display: none;
    cursor: pointer;
}

.show-sidebar {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
}

nav {
    margin: 20px 5px;
}

nav ul li {
    cursor: pointer;
    margin: 10px;
    background: #f5f6f7;
    border-radius: 5px;
}

nav ul li a {
    display: flex;
    width: 100%;
    padding: 10px;
    align-items: center;
    gap: 10px;
}

nav ul li.active,
nav ul li:hover {
    background: rgb(238, 174, 202);
    background: -moz-radial-gradient(
        circle,
        rgba(238, 174, 202, 0.5102415966386555) 0%,
        rgba(148, 187, 233, 0.5410539215686274) 100%
    );
    background: -webkit-radial-gradient(
        circle,
        rgba(238, 174, 202, 0.5102415966386555) 0%,
        rgba(148, 187, 233, 0.5410539215686274) 100%
    );
    background: radial-gradient(
        circle,
        rgba(238, 174, 202, 0.5102415966386555) 0%,
        rgba(148, 187, 233, 0.5410539215686274) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeaeca", endColorstr="#94bbe9", GradientType=1);
}

/* nav ul li.active {
cursor: auto;
pointer-events: none;
} */

/* enf sidebar */

/* start card city */
#city_cards img {
    display: flex;
}

#city_cards span {
    width: 100%;
    margin-right: 10px;
}
/* end card city */

/* start card shop */
#shop_cards .btn {
    width: 100%;
    column-gap: 10px;
}
/* end card shop */
[data-shop-name="eldrugstore.com"] .btn {
    background: deeppink;
}
[data-shop-name="pharma-plus.me"] .btn {
    background: darkolivegreen;
}
[data-shop-name="ahmadhamid.com"] .btn {
    background: orange;
}
[data-shop-name="ahmadhamid.com"] .btn {
    background: darkturquoise;
}
[data-shop-name="Lux"] .btn {
    background: darkgreen;
}

/* start card order status */
#order_status_cards #order-status.badge {
    width: 100%;
    text-align: center;
    justify-content: center;
    height: 50px;
    cursor: pointer;
}

#order_status_cards #order-status.badge:not(.active) {
    background: #fff !important;
    color: #000;
}
/* end card order status */

/* start card counter */
.card-counter {
    position: relative;
    box-shadow: 2px 2px 10px #dadada;
    margin: 5px;
    padding: 20px 10px;
    background-color: #fff;
    height: 100px;
    border-radius: 5px;
    transition: 0.3s linear all;
    cursor: pointer;
}

.card-counter:hover {
    box-shadow: 4px 4px 20px #dadada;
    transition: 0.3s linear all;
}

.card-counter.primary {
    background-color: #007bff;
    color: #fff;
}

.card-counter.danger {
    background-color: #ef5350;
    color: #fff;
}

.card-counter.success {
    background-color: #66bb6a;
    color: #fff;
}

.card-counter.info {
    background-color: #26c6da;
    color: #fff;
}

.card-counter i {
    font-size: 5em;
    opacity: 0.2;
    left: 20px;
    position: absolute;
    top: 10px;
}

.card-counter .count-numbers {
    position: absolute;
    right: 35px;
    top: 20px;
    font-size: 25px;
    display: block;
}

.card-counter .count-name {
    position: absolute;
    right: 35px;
    top: 65px;
    text-transform: capitalize;
    opacity: 0.75;
    display: block;
    font-size: 16px;
}
/* end card counter */

/* start card btn */
.card-btn {
    background: #fff;
    border: 2px solid gray;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-btn.card-btn-successful.active,
.card-btn.card-btn-successful:hover {
    background: green;
    color: #fff;
}

.card-btn.active,
.card-btn:hover {
    background: #4b9aec;
    color: #fff;
    transition: 0.3s;
}
/* end card btn */

.stock-change-box textarea {
    border-radius: 5px;
    outline: 0;
    border: 1px solid darkgray;
    padding: 10px;
    resize: none;
    width: 90%;
    height: 70px;
    margin: 10px 0;
}

#change_stock_descriptions {
    width: 100%;
}

#change_stock_descriptions .flex-space-between {
    padding: 5px 10px;
}

/* start snakbar */
#snackbar {
    direction: auto;
    visibility: hidden;
    min-width: 250px;
    background-color: rgba(255, 0, 0, 0.548);
    color: white;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 17px;
    z-index: 1000;
}

#snackbar.show {
    visibility: visible;
    animation:
        fadein 0.5s,
        fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}
/* end snakbar */
/* General badge style */
.badge {
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}

/* start order-status */
#order-status {
    color: #fff;
    background-color: black;
}
#order-status[data-status="pending"] {
    background-color: #b51bbf !important;
}

#order-status[data-status="processing"] {
    background-color: #09bfa6 !important;
}

#order-status[data-status="printing"] {
    background-color: #027fd8 !important;
}

#order-status[data-status="posted"] {
    background-color: #28a745 !important;
}

#order-status[data-status="posted-2"] {
    background-color: orange !important;
}

#order-status[data-status="cancelled"] {
    background-color: #f9031b !important;
}

#order-status[data-status="temp-print"] {
    background-color: deeppink !important;
}
/* end order-status */

/* start shop status */
.shop_status_card {
    display: flex;
    gap: 15px;
    flex-direction: column;
    border: 1px solid darkgray;
    border-radius: 5px;
    padding: 20px 10px;
    width: 100%;
    margin: 10px 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
/* end shop status */

/* start alarm */
.status-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.status-on {
    color: green;
}

.status-off {
    color: red;
}

.alarm {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 10px;
    animation: pulse 1.5s infinite;
}

.alarm-on {
    background-color: green;
}

.alarm-off {
    background-color: red;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
/* end alarm */

.product-list-table {
    border-collapse: collapse;
}

.product-list-table th {
    background: #f2f2f2;
    font-weight: bold;
}

.product-list-table td,
.product-list-table th {
    padding: 10px;
    text-align: left;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
}

@media only screen and (max-width: 760px),
    (min-device-width: 768px) and (max-device-width: 1024px) {
    .product-list-table {
        width: 100%;
    }

    .product-list-table,
    .product-list-table thead,
    .product-list-table tbody,
    .product-list-table th,
    .product-list-table td,
    .product-list-table tr {
        display: block;
    }

    .product-list-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .product-list-table tr {
        border: 1px solid #ccc;
    }

    .product-list-table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
    }
}

/* start print */
#dont-show-in-web {
    display: none;
}

@page {
    margin: 1.5mm;
}

@media print {
    body * {
        visibility: hidden;
    }

    #print,
    #print * {
        visibility: visible;
    }

    #print {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    #dont-show-in-print {
        display: none;
    }

    #dont-show-in-web {
        display: block;
    }

    #print table#table-product {
        td {
            padding: 5px;
        }
    }
    .container #print,
    .box #print {
        margin: 0;
        padding: 0;
    }
}
/* end print */

/* start chart */
.chart-container {
    position: relative;
    width: 100%;
    max-width: 50vw;
    height: auto;
}
/* end chart */

.chart-container#chart-stock {
    max-width: 100vw !important;
}

#chart-stock canvas {
    width: 100% !important;
    height: 300px !important;
}

@media (max-width: 750px) {
    .top {
        background: #fff;
        justify-content: space-between;
        height: 72px;
    }

    aside {
        display: none;
    }

    #open-sidebar,
    #close-sidebar {
        display: flex;
    }

    #time-display,
    #show-profile {
        display: none;
    }

    .stock-change-items {
        flex-direction: column;
        gap: 0;
    }

    .stock-change-box .btn,
    #search-sku .btn,
    input,
    .container-login .box,
    .container-login .btn {
        width: 100% !important;
    }

    .input-icon {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .container-login .box {
        margin: 20px;
    }
    .stock-change-boxs {
        flex-direction: column;
    }
    .stock-change-box {
        width: unset;
    }
    table#table-product th:first-child,
    table#table-product td:first-child {
        text-align: right;
    }
    .grid-col-2,
    .grid-col-3,
    .grid-col-4,
    .grid-col-5,
    .grid-col-6 {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 5px;
    }
    .grid-col-8 {
        grid-template-columns: repeat(2, 1fr);
    }
    #city_cards img {
        width: 30px;
    }
    #order_status_cards {
        gap: 10px;
    }
    #snackbar {
        width: 90%;
    }
    #reports .flex-space-between {
        flex-direction: column;
    }

    .edit-products .flex-space-between {
        flex-direction: column;
    }

    .edit-products textarea {
        width: 100%;
    }
}
