.situation-card {
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 15px;
  padding: 0.5vh 1vh;
  text-align: center;
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Aligns everything to the top */
  gap: 1vh;
  overflow: hidden;
}

/* BUTTONS CORE */
button {
  background: #333;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1.8vh;
  font-weight: bold;
  cursor: pointer;
  flex: 1;
  min-height: 0;
  border-bottom: 4px solid #111;
}

button:active {
  transform: translateY(2px);
  border-bottom-width: 1px;
}
