body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #fff0f5;
      display: flex;
      flex-direction: column;
      height: 100vh;
    }

.form-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #ffe4ec;
    padding: 30px 60px;
    gap: 40px;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    color: #ff5c8a;
}

input[type="text"],
select {
    margin-top: 5px;
    padding: 10px;
    border: 2px solid #ffc0cb;
    border-radius: 10px;
    font-size: 14px;
    background-color: #fff7fa;
    height: 40px;
    width: 100%;
    box-sizing: border-box;
}

select {
    height: 40px;
    max-height: 150px;  
    overflow-y: auto; 
}

textarea {
    margin-top: 5px;
    padding: 10px;
    border: 2px solid #ffc0cb;
    border-radius: 10px;
    font-size: 14px;
    background-color: #fff7fa;
    width: 100%;
    height: 207.5px; /* matches 3x input box height */
    box-sizing: border-box;
    resize: none;
}

.info-area {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 60px;
    background-color: #fff7fa;
}

.info-box {
    background-color: #ffc0cb;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #333;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-box.new {
  animation: slideUp 0.5s ease-in-out;
}

.ping-image-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  margin: 40px auto;
}

.ping-image-button img {
  height: 150px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.ping-image-button:hover img {
  transform: scale(1.07);
}