.inforow {
  background-color: #ffe0b2; /* Light orange/yellow background */
  color: #333;
  padding: 10px 20px;
  margin: 10px 0;
  border: 1px solid #ffcc80;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Add transition for smooth dismissal */
  transition: opacity 0.5s ease-out; 
}

.inforow p {
  margin: 0;
  font-weight: bold;
}

.inforow button {
  background-color: #ff9800;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
  margin-left: 15px;
  flex-shrink: 0;
}

.inforow button:hover {
  background-color: #fb8c00;
}

/* (Existing .inforow and button CSS...) */

.inforow a {
  color: #c62828; /* A darker, attention-grabbing color for the link */
  font-weight: bold;
  text-decoration: underline;
  margin: 0 5px; /* Add some space around the link */
}

.inforow a:hover {
  color: #880e4f;
}