

/* Tambahkan tanda bintang merah untuk label yang punya class required */
label.required::after {
    content: " *";
    color: red;
    font-weight: bold;
}
.container-custom {
    max-width: 500px;
    margin: auto;
    padding-bottom: 80px; /* untuk tombol fixed bawah */
  }
  .header-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 600px;
    background: white;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
    z-index: 999;
    padding: 0.5rem 1rem;
  }
  main {
    margin-top: 56px;
  }
  .btn-fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: 100%;
    background: white;
    padding: 0.75rem 1rem;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 0.5rem;
    z-index: 999;
  }
  .btn-share {
    flex: 1;
  }
  .btn-donate {
    flex: 2;
  }
  .verified-icon {
    color: #009ef7;
  }
  .info-box {
    background-color: #e8f4fd;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .read-more {
    color: #0d6efd;
    cursor: pointer;
    font-weight: 600;
  }
  .section-card {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
    cursor: pointer;
  }
  .section-header {
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .section-subtitle {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
  }
  .badge-new {
    background-color: #a9dbff;
    color: #007bff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: 6px;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background-color: #f8f9fa; /* warna background terang */
    border-bottom: 1px solid #ddd;
  }

  .left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .logo {
    width: 32px;
    height: 32px;
    background: #d1c4e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #5e35b1;
    font-size: 1.2rem;
  }

  .text {
    font-size: 0.9rem;
    color: #333;
  }

  .right {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #555;
    cursor: pointer;
  }

  .icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: black;
  }

  .icon:hover {
    color: #0d6efd;
  }

  .toast-bottom-center {
    bottom: 350px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: fixed !important;
    z-index: 9999 !important;
  }

  /* Tambahkan tanda bintang merah untuk label yang punya class required */
label.required::after {
    content: " *";
    color: red;
    font-weight: bold;
}

.btn-fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    background: #fff;
    /*padding: 0.5rem 0;*/
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    z-index: 999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}
.btn-fixed-bottom .btn {
    border: none;
    background: transparent;
}
.btn-fixed-bottom .btn:focus {
    box-shadow: none;
}

.btn-fixed-bottom .btn.active {
    color: #0d6efd;
    background-color: #e7f1ff;
    font-weight: 600;
}

.btn.active {
  background-color: #f8f9fa;
  font-weight: bold;
}

.list-group-item strong {
  font-size: 0.9rem;
}
.list-group-item small {
  font-size: 0.75rem;
}
