.dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}

.material_ddl_btn {
  background-color: #ffffff;
  padding: 10px;
  width: 100%;
  text-align: left;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
}

.product_ddl_btn {
  background-color: #ffffff;
  padding: 10px;
  width: 100%;
  text-align: left;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
}


.dropdown-content {
  display: none;
  position: absolute;
  z-index: 999;
  background-color: white;
  border: 1px solid #ccc;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
}
.dropdown-content .dropdown-item {
  padding: 8px 12px;
  cursor: pointer;
}
.dropdown-content .dropdown-item:hover {
  background-color: #f0f0f0;
}


.dropdown-content img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.material_ddl_btn img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

.product_ddl_btn img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Modal styles */
.modal-content {
  background: #fff;
  padding: 30px 20px;
  margin: auto;
  margin-top: 10vh;
  width: 90%;
  max-width: 400px;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  font-family: 'Segoe UI', sans-serif;
}

.modal-content input[type="text"],
.modal-content input[type="file"] {
  width: 100%;
  margin-bottom: 15px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.modal-content button[type="submit"] {
  width: 100%;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.modal-content button[type="submit"]:hover {
  background-color: #0056b3;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  color: #888;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

.dropdown-category {
  font-weight: bold;
  padding: 8px 12px;
  background-color: #f9f9f9;
  cursor: default;
  pointer-events: none;
  border-bottom: 1px solid #e0e0e0;
}

.delete-material {
  color: #262626;
  cursor: pointer;
  margin-left: 10px;
  font-size: 16px;
}

.delete-material:hover {
  color: #a00;
}

.delete-product {
  color: #262626;
  cursor: pointer;
  margin-left: 10px;
  font-size: 16px;
}

.delete-product:hover {
  color: #a00;
}