body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

:root {
  --header-bg-color: #377546;
  --header-text-color: #ffffff;
  --header-logoff-icon-color: #ffc723;
  --input-text-color: #707070;
  --icon-color: #707070;
  --sidebar-link-hover-color: #008a00;
  --sidebar-border-color: rgba(112, 112, 112, 0.2);
  --order-item-color: rgba(0, 138, 0, 0.16);
  --order-item-selected-color: rgba(0, 138, 0, 0.25);
  --order-item-text-color: #000000;
  --quantity-control-color: #fff;
}


/* HEADER */

header {
  background-color: var(--header-bg-color);
  color: var(--header-text-color);
  padding: 15px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-title {
  font-size: 20px;
  padding-left: 10px;
  flex: 1;
}


.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: flex-end;
}

.user-image {
  font-size: 30px;
  width: 50px;
  height: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  color: #377546;
  padding: 15px;
}

.user-signoff {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
  padding-right: 30px;
}

.layout-action {
    width: 100px;
    margin-left: 50px;
}

.user-signofficon {
  font-size: 34px;
  color: var(--header-logoff-icon-color);
}

.user-signoff {
  cursor: pointer;
}

/* LOGIN */

.login-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 20px;
  padding-bottom: 200px;
}

.login-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}

.login-form {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #555;
}

.form-input, .form-select {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus {
  border-color: #377546;
  outline: none;
}

.login-button {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  color: #fff;
  background-color: #377546;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-button:hover {
  background-color: #008a00;
}

.error-message {
  margin-top: 15px;
  color: #e74c3c;
  font-size: 0.9rem;
  text-align: center;
}


.order-container {
	padding: 2em;
}

.order-product-entry {
	width: 100%;
}

.split {
	display: flex;
    width: 100vw;
}

.product-list {
	width: 100%;
	max-width: 50%;
	padding-right: 3em;
}

.order-header {
	width: 100%;
	padding-bottom: 2em;
}

.qr-code-value {
    width: 100%;
}

.qr-code {
	padding-top: 2em;
	padding-bottom: 4em;
	width: 100%;
	max-width: 600px;
}

.qr-code-keyboard, .qr-code-input {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.qr-code-key  {
	  display: flex;
	  padding: 0.5em;
	  width: 33%;
}

 .qr-code-enter {
 	  display: flex;
 	  padding: 0.5em;
 	  width: 60%;
    height: 4em;
 }

 .qr-code-enter button {
    background: lightblue;
 }

.qr-code-reset, .qr-code-close {
	  display: flex;
	  padding: 0.5em;
	  width: 20%;
    height: 4em;
}


.qr-code-key {
    height: 4em;
}

.qr-code button {
	height: 100%;
	width: 100%;
}

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

.centered-vh {
    height: 100vh;
}

.product-list-item-image img {
    max-width: 48px;
}

.fullwidth {
        width:100vw;
        height: 100vh;
}

.snackbar {
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12),
    0 8px 10px -5px rgba(0, 0, 0, 0.3);

  position: fixed;
  bottom: 23px;
  left: 23px;
  background-color: rgba(0, 0, 0, 0.87);
  display: flex;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 2s;
  max-width: 80%;
  min-height: 48px;
  padding: 0 8px 0 16px;
}


.sb_message, .sb_with_action {
    opacity: 1;
}

.sb_hidden {
    display: none;
}

.snackbar span, .snackbar a {
    color: #fff;
    margin: auto 0;
    padding: 8px 0;
  }

.snackbar.sb_with_action span {
  width: 344px-64px;
}

.snackbar.sb_with_action .sb_action {
  color: #64b5f6;
  cursor: pointer;
  width: 64px;
  text-align: center;
  text-decoration: none;
}

.scan-order-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 20px;
  padding-bottom: 200px;
}

.package-list {
	width: 100%;
	max-width: 50%;
	margin-right: 3em;
}

.package-container {
    width: 100%;
    border: 1px solid #ccc;
    padding: 1em;
    margin-top: 1em;
    background-color: rgba(138, 138, 138, 0.05);
}

.package-container.package-selected {
    border: 1px solid rgba(0, 138, 0, 0.85);
    background-color: rgba(0, 138, 0, 0.05);
}

.flex-space-between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}

.shipping-method {
    cursor: pointer;
}

.shipping-method-img-wrapper {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shipping-method-img {
    max-width: 100%;
    max-height: 250px;
}

.float-right {
    float: right;
}

.full-width {
    width: 100%;
}

.warning-title {
    color: red;
}

.warning-img {
    max-width: 100%;
}