body {
  background-color: #9ce6b2;
  color: #5e4838;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* CENTER CONTAINER */
.container {
  width: 500px;
  margin: 50px auto;
  display: flex;
  gap: 10px;
}

/* LEFT SIDE */
.left {
  width: 40%;
  text-align: center;
}

.profile-img {
  width: 100%;
  max-width: 250px;
  border-radius: 20px;
  display: block;
  margin: 0;
}

.name {
  margin-top: 5px;
  font-size: 20px;
  animation: pulse 2s ease-in-out infinite;
}

/* shrink + grow animation */
@keyframes pulse {
  0%   { transform: scale(1.2); }
  50%  { transform: scale(0.9); }
  100% { transform: scale(1.2); }
}

/* RIGHT SIDE */
.right {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* SCROLL TEXT BOX */
.scrollbox {
  height: 150px;
  overflow-y: auto;
  padding: 10px;
  background-color: white; /* placeholder */
  border-radius: 10px;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 14px;
  background-color: #3e7049;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

.btn:hover {
  opacity: 0.8;
}

.content-section {
  width: 100%;
  display: none;
  margin-top: 10px;
  padding: 12px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


