@font-face {
  font-family: 'Omnes Black';
  src: url('/static/fonts/Omnes_Black.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html{
    font-family: 'Omnes Black', sans-serif;
    background-color: #f2dae0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    text-transform: uppercase;
}

body {
    font-family: 'Omnes Black', sans-serif;
    text-align:center;
}

h1  {
    margin-top: unset;
}

input, select {
    border: 2px solid #cbb7bc;
    padding: 10px;
    border-radius: 6px;
}

.option {
    cursor: pointer;
}

.white {
    color: white;
}

.dark-grey {
    color: #5f4f4f;
    padding-top: 9px;
}

.logo {
    margin-top: 9px;
    width: 6em;
    cursor: pointer;
}

.home-container {
    text-align: center;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.button {
    background-color: white;
    border: 3px solid #000000;
    border-radius: 42px;
    padding: 16px 113px;
    color: #000000;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Omnes Black', serif;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2);
    transition: 0.1s ease-in-out;
}

.button:hover {
    background-color: #cbb7bc;
    color: white;
}

.button img {
    width: 20px;
    height: 20px;
}

.or {
    color: white;
    font-size: 26px;
    text-transform: uppercase;
}

.file-input {
    display: none;
}

.btn-icon {
    width: 25px;
    margin-right: 5px;
}

.input-order-id {
    padding: 16px 9px;
    width: 293px;
    border: 3px solid #000000;
    border-radius: 9px;
    font-family: 'Omnes Black', serif;
    font-size: 19px;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 318px;
    margin-bottom: 26px;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    background-color: white;
    cursor: pointer;
    padding: 16px 9px;
    border: 3px solid #cbb7bc;
    border-radius: 9px;
    font-family: 'Omnes Black', serif;
    font-size: 19px;
}

.select-wrapper::after {
    content: '\25BC';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-field {
    border: 3px solid #000000;
    border-radius: 9px;
    background-color: white;
    font-family: 'Omnes Black', serif;
    font-size: 19px;
    padding: 16px 9px;
    width: 293px;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 318px; /* Match the width of your other inputs */
    margin: 0 auto; /* This centers the div */
    margin-bottom: 26px; /* Maintain consistent spacing */
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 3px solid #000000;
    border-radius: 9px;
    background-color: white;
}

.custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 9px;
    font-size: 18px;
    font-family: 'Omnes Black', serif;
    color: #000000;
    cursor: pointer;
}

.custom-select__trigger.option-selected {
    color: #3b3b3b;
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    margin: -3px;
    border: 3px solid #000000;
    border-top: 0;
    background: #fff;
    transition: all 0.2s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.custom-option-search {
    width: calc(100% - 46px);
    padding: 10px;
    margin: 10px;
    border: 1px solid #cbb7bc;
    border-radius: 5px;
    font-family: 'Omnes Black', serif;
    font-size: 16px;
}
.custom-option-container {
    max-height: 369px;
    overflow-y: auto;
}

.custom-option {
    position: relative;
    display: block;
    padding: 10px;
    font-size: 16px;
    font-family: 'Omnes Black', serif;
    color: #3b3b3b;
    cursor: pointer;
    transition: all 0.5s;
    text-align: left;
}

.custom-option:hover {
    cursor: pointer;
    background-color: #f2dae0;
}

.custom-option.selected {
    color: #ffffff;
    background-color: #cbb7bc;
}

.arrow {
    position: relative;
    height: 15px;
    width: 15px;
}

.arrow::before, .arrow::after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 0.15rem;
    height: 100%;
    transition: all 0.3s;
}

.arrow::before {
    left: -5px;
    transform: rotate(315deg);
    background-color: #000000;
}

.arrow::after {
    left: 5px;
    transform: rotate(45deg);
    background-color: #000000;
}

.open .arrow::before {
    left: -5px;
    transform: rotate(225deg);
}

.open .arrow::after {
    left: 5px;
    transform: rotate(135deg);
}

#store-search {
    width: 300px;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #cbb7bc;
    border-radius: 5px;
    font-family: 'Omnes Black', serif;
    font-size: 16px;
}

.submit-button {
    color: #141414;
    background-color: #efcdd2;
    border-style: none;
    width: 303px;
    height: 65px;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
    -webkit-appearance: none;
    -webkit-border-radius: 6px;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2);
    font-family: 'Omnes Black', serif;
    text-transform: uppercase;
    margin-bottom: 393px;
}

.login-register-block {
    display: flex;
    margin-top: 50px;
    margin-bottom: 6vh;
    justify-content: center;
}

.login-register-column {
    max-height: 100%;
    min-height: 300px;
    width: 450px;
    padding-left: 1.2em;
    padding-right: 1.2em;
    -webkit-animation: fadein 2s;
    -moz-animation: fadein 2s;
    -o-animation: fadein 2s;
    animation: fadein 2s;
}

.login-register-title {
    font-size: 1.4em;
    text-align: left;
    max-width: unset;
    margin-top: 7px;
    color: #383a46;
    letter-spacing: 2px;
}

.login-register-input {
    background: #31343e;
    font-size: 1rem;
    border-style: none;
    text-transform: uppercase;
    border-radius: 6px;
    height: 3em;
    display: flex;
    margin-left: -1px;
    padding-left: 1em;
    flex-direction: column;
    color: white;
    width: 95%;
    margin-top: 0.75em;
    margin-bottom: 0.75em;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2);
    font-family: 'Omnes Black', serif;
}

.login-register-input::placeholder {
    color: #e5e5e5;
}

.login-button {
    color: #141414;
    background-color: #efcdd2;
    border-style: none;
    border-radius: 6px;
    width: 303px;
    height: 65px;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 2px;
    transition: 0.3s;
    -webkit-appearance: none;
    -webkit-border-radius: 6px;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2);
    font-family: 'Omnes Black', serif;
    text-transform: uppercase;
    margin-top: 6px;
}

.login-button:hover, .submit-button:hover {
    cursor: pointer;
    background-color: #c7a4a9;
}

.login-subtext{
    font-size: 0.9em;
    text-align: left;
    margin-top: 8em;
    color: white;
}

.register-subtext {
    margin-top: unset;
}

.login-subtext a{
    text-decoration: underline;
    color: white;
}

.login-register-logo {
    margin-top: 2em;
    width: 10em;
    cursor: pointer;
}

.search-form {
    margin-bottom: 20px;
}

.search-form input[type="text"] {
    padding: 10px;
    width: 200px;
}

.search-form button {
    padding: 5px 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

table td {
    padding: 10px;
}

.success-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logout-btn, .tinder-btn, .settings-btn {
    position: absolute;
    right: 26px;
    color: #141414;
    background-color: #efcdd2;
    border-style: none;
    padding: 10px 20px;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 2px;
    transition: 0.3s;
    -webkit-appearance: none;
    -webkit-border-radius: 6px;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2);
    font-family: 'Omnes Black', serif;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 6px;
}

.logout-btn:hover, .tinder-btn:hover {
    background-color: #cbb7bc;
}

.tinder-btn {
    left: 26px;
    right: unset;
}

.thumbnail {
    max-width: 100px;
    max-height: 100px;
    border-radius: 10px;
}

.bulk-download-btn {
    color: #141414;
    background-color: #efcdd2;
    border-style: none;
    padding: 10px 20px;
    font-size: 0.8em;
    font-weight: bold;
    transition: 0.3s;
    border-radius: 39px;
    -webkit-appearance: none;
    -webkit-border-radius: 39px;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2);
    font-family: 'Omnes Black', serif;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 6px;
    margin-bottom: 9px;
    cursor: pointer;
}

.admin-button {
    right: 26px;
    color: #141414;
    border-style: none;
    padding: 5px 10px;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
    -webkit-appearance: none;
    -webkit-border-radius: 6px;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2);
    font-family: 'Omnes Black', serif;
    text-transform: uppercase;
    text-decoration: none;
}

.admin-button:hover {
    cursor: pointer;
}

.admin-button-green {
    background-color: #cdefcf;
    margin-right: 10px;
}

.admin-button-red {
    background-color: #ec6c6c;
}

.bulk-download-btn:hover {
    background-color: #cbb7bc;
}

.admin-form-container {
    width: 1210px;
}

.filter-form {
    margin-bottom: 13px;
}
