
.card-item-m {
  width: 10rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
}

.card-items-merchant {
  display: grid;
  width: 100%;
  padding-left: 60px;
  justify-content: start;
}

.card-item-m img {
  width: 100%;
  object-fit: cover;
  position: center;
  object-position: center;
}

.card-item-m h5 {
  text-align: start;
  margin-top: 5px;
  font-size: 14px;
}

.card-item-m p {
  text-align: start;
  margin-top: 5px;
  font-size: 12px;
  color: #555;
}

.card-item-m .btn-co {
  width: 100%;
  background-color: #781178;
  color: white;
  border-radius: 4px;
  outline: none;
  border: none;
  padding: 5px;
}


.select-division {
  appearance: none; /* Hilangkan default arrow bawaan browser */
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1.5px solid var(--dark);
  padding: 5px 40px 5px 20px;
  border-radius: 25px;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="black" d="M7 10l5 5 5-5H7z"/></svg>'); /* Custom icon */
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center; /* Geser ke kiri */
  background-size: 16px;
  cursor: pointer;
  outline: none;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 250px;
}



@media (max-width: 768px) {
  .card-items-merchant {
    padding-left: 0;
    justify-content: center;
  }
  
}

.card-img-top {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%; 
  height: 100%;
  object-position: center center;
}