.skeleton {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.skeleton-line {
  height: 12px;
  background-color: #e0e0e0;
  /* Warna abu-abu */
  border-radius: 4px;
  animation: pulse 1.5s infinite ease-in-out;
}

.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 400px) {
  .logo-pondok {
    display: none;
  }
}
.custom-container {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* width: 400px; */
}
.custom-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.custom-file-wrapper {
  /* display: flex; */
  /* align-items: center; */
  width: 100%;
  gap: 10px;
  row-gap: 10px;
}
.custom-file-input {
  flex-grow: 1;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 5px;
  background: white;
  outline: none;
  cursor: pointer;
}

.custom-modal-content {
  background: white;
  padding: 20px;
  border-radius: 5px;
  max-width: 500px;
  text-align: center;
}

.modal-dialog {
  max-width: 100%; /* Default: full width */
}

@media (min-width: 992px) {
  .modal-dialog {
    max-width: 80%; /* Saat lg ke atas (≥992px) */
  }
}
