/* body {
    background-image: url("bg.png");
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
} */

.panel-empty {
    background-color: #eee;
    border-color: #ddd !important;
}

.badge-empty {
    background-color: #ccc;
    font-size: .7em;
    padding: 0.1rem 0.3rem;
    border-radius: .25rem;
    color: #eee;
}

.panel-uploaded {
    background-color: #eec;
    border-color: #ddb !important;
}

.badge-uploaded {
    background-color: #bb9;
    font-size: .7em;
    padding: 0.1rem 0.3rem;
    border-radius: .25rem;
    color: #eee;
}

.panel-verified {
    background-color: #cee;
    border-color: #bdd !important
}

.badge-verified {
    background-color: #9bb;
    font-size: .7em;
    padding: 0.1rem 0.3rem;
    border-radius: .25rem;
    color: #eee;
}

.panel-completed {
    background-color: #cec;
    border-color: #bdb !important
}

.badge-completed {
    background-color: #9b9;
    font-size: .7em;
    padding: 0.1rem 0.3rem;
    border-radius: .25rem;
    color: #eee;
}

.image-banner {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

@media only screen and (max-width: 600px) {
    .image-banner {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.hover-shadow {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.hover-shadow:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.zoom:hover {
    transform: scale(1.05);
}

.block {
   max-width: 1200px;
   max-height: 500px;
   height: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    background-color: #f5f5f5;
}

.block-counter {
    text-align: center;

}

/* Auto show dropdown on hover (desktop only) */
@media (min-width: 992px) {
  .hover-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    left: auto;
    right: 1%; /* Geser ke kiri penuh */

  }
}

<!--  percobaan button kedua

.select {
  width: fit-content;
  cursor: pointer;
  position: relative;
  transition: 300ms;
  color: white;
  overflow: hidden;
}

.selected {
  background-color: #ffbe0a;
  padding: 5px;
  margin-bottom: 3px;
  border-radius: 5px;
  position: relative;
  z-index: 100000;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arrow {
  position: relative;
  right: 0px;
  height: 10px;
  transform: rotate(-90deg);
  width: 25px;
  fill: white;
  z-index: 100000;
  transition: 300ms;
}

.options {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  padding: 5px;
  background-color: #ffbe0a;
  position: relative;
  top: -100px;
  opacity: 0;
  transition: 300ms;
}

.select:hover > .options {
  opacity: 1;
  top: 0;
}

.select:hover > .selected .arrow {
  transform: rotate(0deg);
}

.option {
  border-radius: 5px;
  padding: 5px;
  transition: 300ms;
  background-color: #ffbe0a;
  width: 150px;
  font-size: 15px;
}
.option:hover {
  background-color: #ffbe0a;
}

.options input[type="radio"] {
  display: none;
}

.options label {
  display: inline-block;
}
.options label::before {
  content: attr(data-txt);
}

.options input[type="radio"]:checked + label {
  display: none;
}

.options input[type="radio"]#all:checked + label {
  display: none;
}

.select:has(.options input[type="radio"]#all:checked) .selected::before {
  content: attr(data-default);
}
.select:has(.options input[type="radio"]#option-1:checked) .selected::before {
  content: attr(data-one);
}
.select:has(.options input[type="radio"]#option-2:checked) .selected::before {
  content: attr(data-two);
}
.select:has(.options input[type="radio"]#option-3:checked) .selected::before {
  content: attr(data-three);
}
