body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #F0FFF0;
}

.container {
  display: flex;
  align-items: flex-start;
  padding: 40px;
}

.profile-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.content {
  flex-grow: 1;
}

button {
  padding: 10px 20px;
  margin-right: 10px;
  margin-bottom: 25px;
  border: none;
  border-radius: 5px;
  background-color: #5b6c50;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #2c3e91;
}

.dropdown {
  background-color: white;
  padding: 5px 15px;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, max-height 0.5s ease;
}

.dropdown.show {
  opacity: 1;
  max-height: 500px;
  pointer-events: auto;
}

.dropdown ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.dropdown ul li {
  margin-bottom: 6px;
}

.dropdown a {
  color: #3f51b5;
  text-decoration: none;
}

.dropdown a:hover {
  text-decoration: underline;
}
