#card-container {
    display: flex;
    flex-wrap: wrap;
  }
  
  .card {
    /* height: 35vh; */
    width: calc((100% / 4) - 16px);
    margin: 8px;
    border-radius: 3px;
    transition: all 200ms ease-in-out;
    display: flex;
    border: none;
  }
  .card img {
    border-radius : 10px;
  }
  
  .card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .card-actions {
    margin: 8px;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  #loader {
    display: flex;
  }
  
  .skeleton-card {
    height: 20vh;
    width: calc((100% / 4) - 16px);
    margin: 8px;
    border-radius: 3px;
    transition: all 200ms ease-in-out;
    position: relative;
    background-color: #eaeaea;
  }
  
  .skeleton-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
    animation: load 1s infinite;
  }
  
  @keyframes load {
    100% {
      transform: translateX(100%);
    }
  }
  
  @media screen and (prefers-reduced-motion: reduce) {
    .skeleton-card::after {
      animation: none;
    }
  }


/* Checklist Tambahan - Unit Gedung Wisma Haji */
.checklist-section {
  margin-top: 20px;
}

.checklist-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #f9f9f9;
}

.checklist-item input[type="checkbox"] {
  margin-right: 10px;
}

.checklist-item .item-label {
  flex: 1;
  font-weight: 500;
}

.checklist-item .quantity-input {
  width: 80px;
  margin: 0 10px;
  padding: 5px;
  text-align: center;
}

.checklist-item .total-label {
  font-weight: bold;
  color: #333;
  min-width: 100px;
  text-align: right;
}