body {
    font-family: Arial, sans-serif;
    background-color: #1e1e2d;
    color: #fff;
    margin: 0;
    padding: 20px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: #2a2a40;
    padding: 15px;
    border-radius: 8px;
    width: 240px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.card h4, .card p {
    margin: 5px 0;
    text-align: center;
}

/* Hintergrundfarben für positive/negative Preisverhältnisse */
.card-positive {
    background-color: #4CAF50; /* Grün für günstigere Preise */
    color: #fff; /* Textfarbe auf Weiß setzen */
}

.card-negative {
    background-color: #f44336; /* Rot für teurere Preise */
    color: #fff; /* Textfarbe auf Weiß setzen */
}

/* Preistext bleibt weiß, damit es auf Grün/Rot sichtbar bleibt */
.card-price {
    font-weight: bold;
    font-size: 0.9em;
    color: #fff; /* Weiß für Lesbarkeit */
}

.card-condition {
    font-size: 0.9em;
    color: #999;
}
