/* Background */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;

  /* Center content vertically + horizontally */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Centered skinny container */
.container {
  width: 90%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Header section */
.header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.header-image {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  object-fit: cover;
  border-radius: 5px;
}

.header h1 {
  font-size: 1.8rem;
  margin: 0;
}

/* Dropdowns styling */
details {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  background-color: #f9f9f9;
  position: relative;
}

summary {
  font-weight: bold;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
}

/* Arrow on the left */
summary::before {
  content: "▶";
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  margin-right: 10px; /* space between arrow and text */
}

.open summary::before {
  transform: rotate(90deg);
}

/* remove default marker */
summary::-webkit-details-marker {
  display: none;
}


details[open] {
  background-color: #eef2f7;
}

/* Animated content */
.content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.content p {
  margin-top: 10px;
  font-size: 0.95rem;
}
