* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    /* global fix */
}

/* :root {
    --
} */

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #271608;
    font-size: 14px;
    color: #fff;;
}

.layout {
    display: flex;
    height: 100vh;
}

.master-color {
    background: linear-gradient(to bottom, rgb(0, 0, 0), rgb(53, 53, 53));
    /* Dark color gradient */
    background: linear-gradient(to bottom, rgb(0, 23, 65), rgb(0, 50, 143));
    /* Blue color gradient */
    background: linear-gradient(to bottom, rgb(78, 0, 0), rgb(158, 37, 37));
    /* Red color gradient */
    color: #fff;
}


/* SIDEBAR */
.sidebar {
    width: 240px;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    /* padding-bottom: 16px;
    padding-top: 16px; */
    max-height: 100px;
    text-align: center;
    border-bottom: solid thin #883939;
}

.menu {
    list-style: none;
    padding: 0;
}

.menu>li {
    padding: 12px 10px;
    /* margin-bottom: 8px; */
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #fff;
}

.icon .menu>li {
    padding: px 10px;
    /* margin-bottom: 8px; */
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.menu li i,
.menu-link li i {
    font-size: 18px;
    width: 22px;
    text-align: center;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    width: 100%;
    display: block;
}

.menu-gray li a {
    color: #000000;
    text-decoration: none;
    width: 100%;
    display: block;
}

.menu-red li:hover,
.menu-red li.active {
    background: linear-gradient(to top, rgb(78, 0, 0), rgb(158, 37, 37));
    /* background: linear-gradient(to bottom, rgb(0, 0, 0), rgb(53, 53, 53)); */
    border: solid thin #e2e2e2;
}

.menu-gray li:hover,
.menu-gray li.active {
    background: #dadada;
    /* background: linear-gradient(to bottom, rgb(0, 0, 0), rgb(53, 53, 53)); */
    /* border: solid thin #e2e2e2; */
}

/* Dropdown base */
.menu .dropdown {
    position: relative;
}

.menu>.dropdown-toggle {
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
}

/* Submenu hidden by default */
.menu .dropdown-menu {
    display: none;
    /* hidden by default */
    position: absolute;
    left: 100%;
    bottom: 0%;
    /* background: #f5f5f5; */
    /* border: 1px solid #ddd; */
    min-width: 220px;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    z-index: 1000;
}

/* Show submenu when hovering parent */
.menu>li.dropdown:hover .dropdown-menu,
.menu>li.dropdown:focus-within .dropdown-menu {
    display: block;
}

.menu .dropdown-menu li {
    padding: 8px 12px;
    white-space: nowrap;
    border-radius: 6px;
}

/* .menu .dropdown-menu li:hover {
  background: #e0e0e0;
} */


/* MAIN AREA */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* HEADER */
.header {
    background: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.header-icons .icon {
    font-size: 20px;
    margin-left: 15px;
    cursor: pointer;
    display: inline-flex;
    color: #333;
}

.header-icons .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    /* makes <li> items sit side by side */
}

.header-icons .menu li {
    position: relative;
    /* allows badge positioning */
    margin: 0 5px;
    /* spacing between menu items */
    color: #333;
}

.header-icons .menu li i {
    font-size: 20px;
}

/* .header-icons .menu li:hover,
.header-icons .menu li.active {
    background: rgb(158, 37, 37);
    border: solid thin #e2e2e2;
    color: #fff;
} */


/* CONTENT */
.content {
    flex: 1;
    padding: 20px;
    overflow: auto;
}

/* FOOTER */
.footer {
    background: #fff;
    padding: 10px 20px;
    text-align: center;
    border-top: 1px solid #ddd;
}

/* TABLE */

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

table tr:nth-child(even) {
    background-color: #f4f4f4;
}

table tr:nth-child(odd) {
    background-color: #ffffff;
}

table tr:hover {
    background-color: #e8e8e8;
    cursor: pointer;
}

.table-wrapper {
    max-height: 510px;
    /* or height */
    overflow-y: auto;
    border: 1px solid #ddd;
}

.table-lookup {
    max-height: 300px;
    /* or height */
    overflow-y: auto;
    border: 1px solid #ddd;
}

/* Make header sticky (modern browsers) */
.table thead th {
    position: sticky;
    top: 0;
    background: #e2e2e2;
    padding: 12px;
    /* avoid blending with rows */
    z-index: 2;
    white-space: nowrap;
    border: #b8b8b8 solid thin;
    padding-right: 30px;
}

/* .table tfoot th {
    position: sticky;
    bottom: 0;
    background: #e2e2e2;
    padding: 12px;
    /* avoid blending with rows */
/*    z-index: 2;
    white-space: nowrap
} */

.table tbody td {
    white-space: nowrap;
    padding: 10px;
    border-bottom: 1px solid #e5e5e5;
}

/* Hide the index column (both header and cells) */
table td:nth-child(1),
table th:nth-child(1) {
    display: none;
}

/* Hide by class column (both header and cells) */
.hide-me {
    display: none;
}

/* TEXT */
.nowrap,
.text-nowrap {
    white-space: nowrap;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-bold {
    font-weight: bold;
}

.text-danger {
    color: #a94442;
}

.separator {
    /* margin: 0 10px; */
    color: #888;
}

/* BACKGROUND */
.bg-danger {
    background-color: #a94442;
}

.bg-blue {
    background-color: #008CBA;
}

.bg-lightgray {
    background-color: #f5f5f5;
}




/* MARGIN */
.m-0 {
    margin: 0px;
}

.margin-1,
.m-1 {
    margin: 3px;
}

.margin-2,
.m-2 {
    margin: 6px;
}

.margin-3,
.m-3 {
    margin: 9px;
}

.margin-4,
.m-4 {
    margin: 12px;
}

.margin-5,
.m-5 {
    margin: 15px;
}

.margin-bottom-0,
.mb-0 {
    margin-bottom: 0px !important;
}

.margin-bottom-1,
.mb-1 {
    margin-bottom: 3px !important;
}

.margin-bottom-2,
.mb-2 {
    margin-bottom: 6px !important;
}

.margin-bottom-3,
.mb-3 {
    margin-bottom: 9px !important;
}

.margin-bottom-4,
.mb-4 {
    margin-bottom: 12px !important;
}

.margin-bottom-5,
.mb-5 {
    margin-bottom: 15px !important;
}

.margin-top-0,
.mt-0 {
    margin-top: 0px !important;
}

.margin-top-1,
.mt-1 {
    margin-top: 3px !important;
}

.margin-top-2,
.mt-2 {
    margin-top: 6px !important;
}

.margin-top-3,
.mt-3 {
    margin-top: 9px !important;
}

.margin-top-4,
.mt-4 {
    margin-top: 12px !important;
}

.margin-top-5,
.mt-5 {
    margin-top: 15px !important;
}

.margin-left-0,
.ml-0 {
    margin-left: 0px !important;
}

.margin-left-1,
.ml-1 {
    margin-left: 3px !important;
}

.margin-left-2,
.ml-2 {
    margin-left: 6px !important;
}

.margin-left-3,
.ml-3 {
    margin-left: 9px !important;
}

.margin-left-4,
.ml-4 {
    margin-left: 12px !important;
}

.margin-left-5,
.ml-5 {
    margin-left: 15px !important;
}

.margin-right-0,
.mr-0 {
    margin-right: 0px !important;
}

.margin-right-1,
.mr-1 {
    margin-right: 3px !important;
}

.margin-right-2,
.mr-2 {
    margin-right: 6px !important;
}

.margin-right-3,
.mr-3 {
    margin-right: 9px !important;
}

.margin-right-4,
.mr-4 {
    margin-right: 12px !important;
}

.margin-right-5,
.mr-5 {
    margin-right: 15px !important;
}


/* PADDING */
.p-0 {
    padding: 0px;
}

.padding-1,
.p-1 {
    padding: 3px !important;
}

.padding-2,
.p-2 {
    padding: 6px !important;
}

.padding-3,
.p-3 {
    padding: 9px !important;
}

.padding-4,
.p-4 {
    padding: 12px !important;
}

.padding-5,
.p-5 {
    padding: 15px !important;
}

.padding-bottom-0,
.pb-0 {
    padding-bottom: 0px !important;
}

.padding-bottom-1,
.pb-1 {
    padding-bottom: 3px !important;
}

.padding-bottom-2,
.pb-2 {
    padding-bottom: 6px !important;
}

.padding-bottom-3,
.pb-3 {
    padding-bottom: 9px !important;
}

.padding-bottom-4,
.pb-4 {
    padding-bottom: 12px !important;
}

.padding-bottom-5,
.pb-5 {
    padding-bottom: 15px !important;
}

.padding-top-0,
.pt-0 {
    padding-top: 0px !important;
}

.padding-top-1,
.pt-1 {
    padding-top: 3px !important;
}

.padding-top-2,
.pt-2 {
    padding-top: 6px !important;
}

.padding-top-3,
.pt-3 {
    padding-top: 9px !important;
}

.padding-top-4,
.pt-4 {
    padding-top: 12px !important;
}

.padding-top-5,
.pt-5 {
    padding-top: 15px !important;
}

.padding-left-0,
.pl-0 {
    padding-left: 0px !important;
}

.padding-left-1,
.pl-1 {
    padding-left: 3px !important;
}

.padding-left-2,
.pl-2 {
    padding-left: 6px !important;
}

.padding-left-3,
.pl-3 {
    padding-left: 9px !important;
}

.padding-left-4,
.pl-4 {
    padding-left: 12px !important;
}

.padding-left-5,
.pl-5 {
    padding-left: 15px !important;
}

.padding-right-0,
.pr-0 {
    padding-right: 0px !important;
}

.padding-right-1,
.pr-1 {
    padding-right: 3px !important;
}

.padding-right-2,
.pr-2 {
    padding-right: 6px !important;
}

.padding-right-3,
.pr-3 {
    padding-right: 9px !important;
}

.padding-right-4,
.pr-4 {
    padding-right: 12px !important;
}

.padding-right-5,
.pr-5 {
    padding-right: 15px !important;
}


/* FORM */
.form {
    padding: 5px;
    /* border: solid thin #ddd; */
    width: 100%;
    border: solid thin #dadada;
}

.form-auto {
    padding: 5px;
    border: solid thin #ddd;
    width: auto;
}

/* PLAINTEXT */
/* Default: look like plain text */
.form-plaintext {
    border: none;
    background: transparent;
    outline: none;
    padding: 2px;
    margin: 0;
    font: inherit;
    color: inherit;
    appearance: none;
    width: 100%;
    /* removes default browser styles */
}

/* On focus/click: restore normal styles */
.form-plaintext:focus {
    border: 1px solid #888;
    background: #fff;
    padding: 2px;
    outline: none;
    appearance: auto;
    width: 100%;
    /* restore native look */
}

.form[readonly],
.form-plaintext[readonly] {
    background: transparent;
    /* color: #555; */
    border: none;
}

/* OVERLAY */
.icon-wrapper {
    position: relative;
    display: inline-block;
}

.badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #d73c3c !important;
    color: #ffffff !important;
    padding: 2px 5px !important;
    border-radius: 50%;
    font-size: 10px;
    font-weight: normal !important;
}

.logo-responsive img {
    max-width: 100%;
    height: auto;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
    margin: auto;
}

/* BORDER */
.border {
    border: solid thin #dadada;
}

.border-bottom {
    border-bottom: solid thin #dadada;
}

.border-left {
    border-left: solid thin #dadada;
}

.border-right {
    border-right: solid thin #dadada;
}

.border-top {
    border-top: solid thin #dadada;
}

.border-none {
    border: none !important;
}


/* CREATE MODULE */
#module-create {
    padding-top: 200px;
}

#module-create #welcome {
    text-align: center;
}


/* DROPDOWN */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown button {
    background: #fff;
    /* background-color: #3498db; */
    /* color: white; */
    /* padding: 10px 16px; */
    /* font-size: 16px; */
    border: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    /* right: 0; */
    background-color: #f9f9f9;
    width: 530px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content-left {
    left: 1;
}

.dropdown-content-right {
    right: 0;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

/* .dropdown:hover .dropdown-content {
    display: block;
} */

/* .dropdown:hover .dropbtn {
    background-color: #dadada;
} */

/* Show menu when active */
.dropdown.show .dropdown-content {
    display: block;
}

.dropbtn {
    /* background-color: #04AA6D;
    color: white; */
    /* padding: 16px;
    font-size: 16px; */
    border: none;
}

.show {
    display: block;
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 equal fixed columns */
    gap: 20px;
    margin-top: 20px;
    height: 35vh;
}

.menu-link {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    /* inline links */
    flex-wrap: wrap;
    /* wrap if too many */
    gap: 10px;
}

.menu-link li {
    cursor: pointer;
    color: #333;
}

.menu-link li:hover {
    text-decoration: underline;
}

.menu-link li a {
    color: #333;
    text-decoration: none;
}

.setting-header {
    font-size: 20px;
    font-weight: bold;
    /* margin-bottom: 5px; */
}

#editor ul,
#editor ol {
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

/* #editor li {
  padding: 6px;
  border-bottom: 1px solid #ccc;
}
#editor li:last-child {
  border-bottom: none;
} */




/* === Grid System === */
.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /* margin-left: -10px;
    margin-right: -10px; */
    /* gap: 10px; */
}


[class*="column-"] {
    padding: 0 10px;
    /* gutter spacing */
    box-sizing: border-box;
}

/* Column widths (percentage based) */
.column,
.col {
    flex: 0 0 100%;
    max-width: 100%;
}

.column-auto,
.col-auto {
    flex: 0 0 auto;
    width: auto;
    /* max-width: none; */
}

.column-10,
.col-10 {
    flex: 0 0 10%;
    max-width: 10%;
}

.column-20,
.col-20 {
    flex: 0 0 20%;
    max-width: 20%;
}

.column-25,
.col-25 {
    flex: 0 0 25%;
    max-width: 25%;
}

.column-30,
.col-30 {
    flex: 0 0 30%;
    max-width: 30%;
}

.col-33 {
    flex: 0 0 33%;
    max-width: 33%;
}

.column-40,
.col-40 {
    flex: 0 0 40%;
    max-width: 40%;
}

.column-50,
.col-50 {
    flex: 0 0 50%;
    max-width: 50%;
}

.column-60,
.col-60 {
    flex: 0 0 60%;
    max-width: 60%;
}

.column-70,
.col-70 {
    flex: 0 0 70%;
    max-width: 70%;
}

.column-75,
.col-75 {
    flex: 0 0 75%;
    max-width: 75%;
}

.column-80,
.col-80 {
    flex: 0 0 80%;
    max-width: 80%;
}

.column-90,
.col-90 {
    flex: 0 0 90%;
    max-width: 90%;
}

/* Responsive tweak */
@media (max-width: 768px) {

    .col-50,
    .col-40,
    .col-60 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ALERT CLASS USAGE */
.alert {
    padding: 15px !important;
    margin-bottom: 20px !important;
    border: 1px solid transparent !important;
    border-radius: 4px !important;
}

.alert-danger {
    color: #a94442 !important;
    background-color: #f2dede !important;
    border-color: #ebccd1 !important;
}

/* === Wizard Navigation === */
.wizard-navigation {
    background: #f5f5f5;
    border-top: 2px solid #ddd;
    padding: 10px 0;
}

.header-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-icons .icon {
    display: inline-block;
}

.wizard-menu-bar {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.wizard-menu-bar li {
    margin: 0 10px;
    padding: 8px 16px;
    background: #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.wizard-menu-bar li:hover {
    background: #d0d0d0;
}

.wizard-step.active {
    background: #007bff;
    color: #fff;
    font-weight: bold;
}


/* BUTTON */
.btn {
    display: inline-block;
    padding: 8px 16px;
    margin: 4px;
    border: solid thin #888;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    background-color: #333;
    color: #fff;
}

.btn-primary {
    background-color: #006ee5;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Green */
.btn-green {
    background-color: #04AA6D;
}

/* Blue */
.btn-blue {
    background-color: #008CBA;
    color: #fff;
}

/* Red */
.btn-red {
    background-color: #f44336;
}

/* Gray */
.btn-gray {
    background-color: #e7e7e7;
    color: black;
}

/* Black */
.btn-black {
    background-color: #555555;
}


.btn-small {
    padding: 3px 10px;
    cursor: pointer;
    border: solid thin #bbbbbb;
    border-radius: 4px;
    text-align: center;
}

.btn-small:hover {
    background-color: #333;
    color: #fff;
}

a .btn {
    width: 100px;
}

.rounded {
    border-radius: 10px;
    /* soft rounded corners */
}

.circle {
    border-radius: 50%;
    /* perfect circle if width = height */
}

a {
    color: #000000;
    text-decoration: none;
    width: 100%;
    display: block;
}




/* Modal background */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    border-radius: 8px;
    width: 600px;
    max-width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    /* key */
    max-height: 80%;
    /* allow scrolling if content too tall */
}

.modal-header,
.modal-footer {
    padding: 10px 15px;
    background: #f1f1f1;
    flex-shrink: 0;
    /* prevent shrinking */
}

.modal-header {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body {
    padding: 15px;
    overflow-y: auto;
    /* scroll if content too long */
    flex-grow: 1;
    /* take available space */
}

.modal-footer {
    text-align: right;
}

.close {
    cursor: pointer;
    font-size: 20px;
}

.btn {
    padding: 8px 12px;
    margin: 5px;
    cursor: pointer;
}



/* .openModalBtn {
    cursor: pointer;
} */

.fa-magnifying-glass {
    cursor: pointer;
}


/* LOADER  */
.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid blue;
    border-right: 10px solid green;
    border-bottom: 10px solid red;
    border-left: 10px solid pink;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* END LOADER */


.hidden {
    display: none;
}

.invisible {
    visibility: hidden;
}

/* BUTTON SEARCH */
.search-box {
    position: relative;
    width: 250px;
}

.search-box input {
    width: 100%;
    padding: 8px 30px 8px 10px;
    /* space for clear button */
    box-sizing: border-box;
}

.clear-btn {
    position: absolute;
    right: 8px;
    top: 40%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    color: #888;
    display: none;
    /* hidden until text is entered */
}

.clear-btn:hover {
    color: #333;
}

.arrow {
  position: absolute;
  right: 8px;          /* push arrow to far right */
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #666;
  margin-left: 28px;        /* gap between text and arrow */
}


/* ACCORDIONS */
.accordion {
    width: 100%;
    /* border: 1px solid #ccc;
    border-radius: 5px; */
}
/* .accordion-item {
    border-bottom: 1px solid #ccc;
} */
.accordion-header {
    /* background: #f1f1f1; */
    /* padding: 10px; */
    cursor: pointer;
    /* font-weight: bold; */
}
.accordion-content {
    display: none; /* hidden by default */
    /* padding: 10px; */
    /* background: #fff; */
}
/* .accordion-header.active {
    background: #ddd;
} */



Header {
    width: 100%;
    height: 100px;
    border-bottom: solid thin #D4AF37;
    position: fixed;
    background-color: #271608;
}

Header .logo {
    border-bottom: solid thin #D4AF37;
}

Header .flex {
    display: flex;
    align-items: center;
    flex-direction: row;
    height: 100px;
}

Header .flex a {
    margin-right: 20px;
    width: 100px;
    padding: 20px;
    text-align: center;
    font-size: 30px;
    /* font-weight: bold; */
    color: #D4AF37;
    text-decoration: none;
}

MainContent {
    text-align: center;
    /* padding: 50px; */
    /* height: calc(100vh - 100px); */
    height: 100vh;
    /* align-items: center;
    justify-content: center; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

MainContent  .title {
    font-size: 64px;
    /* font-weight: bold; */
    margin-bottom: 20px;
    color: #D4AF37;
    font-family: Georgia, Garamond, serif;
}

MainContent .tags {
    font-size: 24px;
    margin-bottom: 30px;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-style: italic;
    font-weight: lighter;
}

MainContent .order-button, Header .order-button {
    background-color: #D4AF37;
    color: #271608;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

OrderContent {
    color: #000;
    /* height: calc(100vh - 100px); */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e6e6e6;
    border: solid thin #271608;
    font-family: Georgia, Garamond, serif;
    padding-top: 100px;
    padding-bottom: 100px;
}

OrderContent .title {
    width: 100%;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: Georgia, Garamond, serif;
    text-align: center;
}

OrderContent .tags {
    width: 100%;
    font-size: 20px;
    margin-bottom: 30px;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-style: italic;
    /* font-weight: lighter; */
    text-align: center;
}

OrderContent .dish-card {
    background-color: #fff;
    border: solid thin #ccc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    width: 400px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

OrderContent .dish-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

OrderContent .dish-name {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: Georgia, Garamond, serif;
}

OrderContent .dish-tag {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

OrderContent .dish-description {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

OrderContent .dish-price {
    font-size: 20px;
    font-weight: bold;
    font-family: Georgia, Garamond, serif;
    color: #D4AF37;
    height: 70px;
    display: flex;
    align-items: center;
    flex-direction: row;}

OrderContent .order-button {
    background-color: #271608;
    color: #D4AF37;
    border: solid thin #D4AF37;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

OurStory {
    color: #000;
    /* height: calc(100vh - 100px); */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border: solid thin #271608; */
    font-family: Georgia, Garamond, serif;
    padding: 20px;
    background-color: #5a3313;
    background-image: repeating-linear-gradient(45deg, rgb(58, 46, 9) 0px, rgb(107, 87, 19) 1px, transparent 1px, transparent 20px);
    padding-top: 100px;
    padding-bottom: 100px;
}

OurStory .title {
    width: 100%;
    font-size: 48px;
    margin-bottom: 20px;
    font-family: Georgia, Garamond, serif;
    text-align: center;
    color: #D4AF37;
}

OurStory .tags {
    width: 100%;
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-align: center;
    /* background-color: rgb(255 255 255 / 0.1); */
    background-color: #271608;
    padding: 20px;
    border-radius: 16px;
    border: solid thin #D4AF37;
}

OurStory .title-tag {
    width: 100%;
    font-size: 36px;
    margin-bottom: 20px;
    font-family: Georgia, Garamond, serif;
    text-align: center;
    color: #D4AF37;
    justify-content: center;
}

OurStory .story-card {
    background-color: #271608;
    border: solid thin #D4AF37;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    justify-items: center;
    width: 245px;
}

OurStory .story-card .image {
    height: 60px;
    width: 60px;
    display: flex;
    border-radius: 30px;
    margin-bottom: 15px;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: #D4AF37;
}

OurStory .story-card .title {
    width: 100%;
    font-size: 48px;
    margin-bottom: 10px;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #D4AF37;
    text-align: center;
    justify-content: center;
    display: flex;
}

OurStory .story-card .tag {
    font-size: 16px;
    color: #fff;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-align: center;
    justify-content: center;
}

OurStory .story-tag2 {
    width: 100%;
    font-size: 36px;
    font-style: italic;
    text-align: center;
    justify-content: center;
    color: #D4AF37;
    margin-top: 25px;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

ContactUs {
    color: #ffffff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: solid thin #271608;
    font-family: Georgia, Garamond, serif;
    padding: 20px;
}

ContactUs .title {
    font-size: 18px;
    color: #D4AF37;
    font-family: Georgia, Garamond, serif;
}

ContactUs .contact-logo {
    height: 75px;
    margin-bottom: 20px;
}

ContactUs .tags {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

Footer {
    background-color: #271608;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: center;
    border-top: solid thin #D4AF37;
    padding: 20px;
}

Footer .logo {
    height: 75px;
}

Footer .flex {
    display: flex;
    align-items: right;
    flex-direction: row;
    /* height: 100px; */
}

a {
    text-decoration: none;
    color: #fff;
}