.flight-card { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; padding: 16px; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 16px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); background-color: #fff; transition: box-shadow 0.3s ease; &:hover { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); } .flight-details { display: flex; flex-direction: column; margin-top: 16px; } }