body {
  background-color: #f5f5f5 !important;
  font-size: small;
}

.mt-5 {
  background: #1081c526 !important;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.buttons {
  margin: 2%;
}


#button-save {
  margin-left: 30%;
}

button {
  padding: 5px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
  font-size: small !important;
  min-width: 10% !important;
  border: none !important;
  background-color: #0078d4 !important;
  color: white !important;
}
table {
  border: none !important;
  width: 100%;
  border-collapse: collapse;
}
.scrollable-tbody {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: auto;
  
}

td{

  font-size: small !important;
  padding: 5px !important;
}


thead{
  border-radius: 8px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
  position: sticky !important;
  top: 0;
  z-index: 1000;
}
/* General Toastr Styles */
.toast {
  display: flex ;/* Use flexbox for layout */
  align-items: center !important; /* Vertically align content */
  justify-content: flex-start !important; /* Align items to the left */
  background-color: #0078d4 !important; /* Change background color */
  color: white !important; /* Change text color */
  border-radius: 8px !important; /* Add rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important; /* Add shadow */
  padding: 15px !important; /* Add padding */
  font-size: 14px !important; /* Adjust font size */
  gap: 10px !important; /* Add spacing between icon and text */
}

/* Message Styling */
.toast-message {
  font-size: 14px !important; /* Adjust message font size */
  line-height: 1.5 !important; /* Adjust line height */
  word-wrap: break-word !important; /* Ensure long text wraps */
  margin-left: 30px !important; /* Add space between icon and message */
}
  

/* Close Button */
.toast-close-button {
  color: white !important; /* Change close button color */
  opacity: 1 !important; /* Make close button fully visible */
  position: absolute !important; /* Position it properly */
  top: 10px !important;
  right: 10px !important;
}


.buttonClose {
  float: inline-end;
  background-color: grey;
}

summary {
  background: #1081c526;
}

#itemForm {
  background: #1081c526;
}

.modal-content {
  background-color: #f5f5f5 !important;
}

form {
  margin-top: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  overflow: auto;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border: none !important;
}

#button-submit {
  float: inline-end;
}

@media (min-width: 1400px) {
  .delivery-address {
    position: absolute;
    right: 25%;
    width: 300px;
    min-height: 300px !important;
  }

  .small-text {
    font-size: small;
    /* Adjust size */
  }
}
.container-fluid {
  background-color: #f5f5f5 !important;
  border: none;
}
.bg-light {
  background-color: #f5f5f5 !important;
}
/* Set background color for the whole page */
body {
  background-color: #f5f5f5 !important;
}

.mt-5 {
  background: #1081c526;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.suggestion-list {
  position: absolute;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1000;
  width: 100%;
  background-color: white;
  border: 1px solid #ddd;
  border-top: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.suggestion-item {
  padding: 8px;
  cursor: pointer;
}

.suggestion-item:hover {
  background-color: #f1f1f1;
}



.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group .form-control,
.input-group textarea {
  width: 100%;
  padding: 1rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fafafa;
  box-sizing: border-box;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group .form-control:focus,
.input-group textarea:focus {
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
  outline: none;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  padding: 0 0.25rem;
  color: #777;
  font-size: 1rem;
  transition: 0.3s ease all;
  pointer-events: none;
}

.input-group .form-control:focus ~ label,
.input-group .form-control:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
  top: -0.6rem;
  left: 0.6rem;
  font-size: 0.85rem;
  color: #2196f3;
}

.input-group .form-control::placeholder,
.input-group textarea::placeholder {
  color: transparent;
}