/* main portal */
        .logo-area {
            width: 100px;
            height: 100px;
            margin: 10px;
        }
        #content-area {
            min-height: 500px;
            padding: 20px;
            margin-top: 20px;
        }

/* menu checkmarks */
        .checkmark-icon {
            font-weight: bold;
            font-size: 14px;
        }
        .checkmark-icon.complete {
            color: #28a745; /* Bootstrap success green */
        }
        .checkmark-icon.incomplete {
            color: #dc3545; /* Bootstrap danger red */
        }
        .checkmark-icon.invisible {
            visibility: hidden;
        }


/* address selector */

    .suggestions {
      border: 1px solid #ccc;
      border-radius: 5px;
      max-height: 200px;
      overflow-y: auto;
      background-color: #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      position: absolute;
      z-index: 1000;
      width: 100%;
      display: none;
    }
    .suggestion-item {
      padding: 10px;
      cursor: pointer;
    }
    .suggestion-item:hover {
      background-color: #e9ecef;
    }
    .loading-icon {
      display: none;
      text-align: center;
    }
    .selected-address {
      border: 1px solid #ccc;
      border-radius: 5px;
      padding: 10px;
      background-color: #e9ecef;
      margin-top: 10px;
    }
    .form-inline .input-group-text {
      background-color: #f8f9fa;
    }
    #pickup-map, #destination-map {
      height: 300px;
      margin-top: 20px;
    }

/* quantity selector */

.item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px;
  border-bottom: 1px solid #ddd;
}
.item-name {
  flex-grow: 1;
}
.volume-panel {
  background: white;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}
.arrow-icon {
  font-size: 10px; /* Increase size */
  #margin-left: 8px; /* Space from text */
  vertical-align: middle; /* Align with text */
  #display: inline-block; /* Ensure proper positioning */
  float: right;
  transition: transform 0.3s ease-in-out;
}

.room-header[aria-expanded="true"] .arrow-icon {
  transform: rotate(180deg);
}

.room-button {
  width: 100%;
  text-align: left;
}
.room-header {
  width: 100%;
  text-align: left;
  background-color: #007bff;
  color: white;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
}
.room-items {
  margin-top: 10px;
  padding-left: 15px;
}

.qty-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
}

.qty-decrease,
.qty-increase {
  width: 30px; /* Set button width */
  height: 30px; /* Match input height */
  padding: 0;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  border-radius: 5px;
}

.qty-input {
  width: 50px;
  height: 30px;
  text-align: center;
  -moz-appearance: textfield; /* Remove steppers in Firefox */
}

/* Remove number input arrows (up/down buttons) */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
