@charset "utf-8";
/* CSS Document */

/* ================= DROPDOWN PANEL ================= */

/* Full-width container at top */
.dropdown-panel {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  display: flex;
  justify-content: center;
  z-index: 9999;
}

/* The actual dropdown box */
.dropdown-box {
  background: #C7D5F8;
  width: 420px; /* slightly bigger than image */
  padding: 5px;
  text-align: center;
  border-width:  thin;
    border-color: #5673AA;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  position: relative;
  animation: dropDown 0.6s ease;
}

/* Image styling */
.dropdown-box img {
  width: 400px;
  height: 448px;
  object-fit: cover;
  border-radius: 5px;
}

/* Heading */
.dropdown-box p {
  margin-bottom: 10px;
}

/* Text */
.dropdown-box p {
  margin-top: 10px;
  font-size: 14px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;

  font-size: 28px;     /* makes it bigger */
  font-weight: bold;   /* makes it thicker */
  color: #333;

  line-height: 1;
  transition: 0.2s ease;
}

/* Hover effect (optional but nice) */
.close-btn:hover {
  color: red;
  transform: scale(1.2);
}

/* Drop animation */
@keyframes dropDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}