body {
    background-color: rgb(250, 250, 250);
    color: rgb(33, 37, 41);
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 22.5px;
    margin: 0;
    padding: 24px 15px;
}

.header {
    text-align: center;
    background-color: #009926;
    color: #ffffff;
    padding: 20px 0;
    border-radius: 10px;
    margin-bottom: 20px;
}
.header h1 {
    margin: 0;
    vertical-align: middle;
    text-align: center;
}
.form-container, .table-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table-header {
    background-color: #d4edda;
    color: #333;
}
.table-header th {
    color: #28a745;
    vertical-align: middle;
    text-align: center;
}
.container {
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
}

.col {
    flex: 1;
    min-width: 300px;
}

.btn-primary {
  color: #fff;
  background-color: #009926;
  border-color: #009926;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle, .btn-primary:focus, .btn-primary.focus {
  color: #f9e76a;
  background-color: #009926;
  border-color: #009926;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-primary:hover {
  background-color: #5FB66E;
  border-color: #5FB66E;
}
}

.btn-success {
    background-color: #4caf50;
    border-color: #4caf50;
}
.btn-success:hover {
    background-color: #45a049;
    border-color: #45a049;
}
.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #bbb;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e8e8e8;
    color: #333;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-secondary:active {
    background-color: #e2e2e2;
    box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}


li {
align: center;
}

.menu-container {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

th {
    vertical-align: middle;
    text-align: center;
}

td {
    vertical-align: middle;
    text-align: center;
}

.date-container {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 30px 24px;
}

.price-increased, .price-decreased, .price-unchanged {
    position: relative;
    display: inline-block;
}

.price-tooltip {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}



.price-increased:before, .price-decreased:before, .price-unchanged:before {
    content: attr(data-old-price);
    display: block;
    color: #666;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.price-increased:hover:before, .price-decreased:hover:before, .price-unchanged:hover:before {
    opacity: 1;
}

.price-increased {
    color: #ff6865;
}

.price-decreased {
    color: #41A317;
}

.price-unchanged {
    color: black;
}

.price-container {
    position: relative;
    display: inline-block;
    padding-right: 20px;
}

.price-container:hover .price-tooltip {
    visibility: visible;
    opacity: 1;
}

.price-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}

.price-increased::after {
    border-width: 0 3px 6px 3px;
    border-color: transparent transparent #ff6865 transparent;
}

.price-decreased::after {
    border-width: 6px 3px 0 3px;
    border-color: #41A317 transparent transparent transparent;
}

.price-unchanged::after {
    content: none;
}

.form-select {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.table-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    padding: 10px 15px;
    text-align: left;
    background-color: rgb(249, 231, 105);
    color: #333;
    border-bottom: 2px solid #ddd;
    border-radius: 10px 10px 0 0;
}


.editable-info {
    font-size: 0.8rem;
    color: #6c757d;
    vertical-align: middle;
}


.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}


.loading-content {
    text-align: center;
}


container.blur {
    filter: blur(5px);
    pointer-events: none;
}

html {
  overflow-y: scroll;
}

.row-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}