.transactions .card {
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 260px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.transactions .card:hover {
  box-shadow: 0 8px 24px rgba(30, 66, 128, 0.15);
  transform: translateY(-8px) scale(1.03);
  cursor: pointer;
}

.transactions .card .card-title {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto 16px auto;
  text-align: center;
  width: 280px;
  border: #1859a4 1px solid;
  padding: 8px;
  border-radius: 40px;
  background: #1859a4;
}
.transactions .card:last-child .card-title {
  border: #e57373 1px solid;
  background: #e57373;
}

.transactions .card .card-year {
  font-size: 16px;
  font-weight: bold;
  color: #1859a4;
  margin-bottom: 8px;
  text-align: center;
}

.transactions .card:last-child .card-year {
  color: #e57373;
}
