.parking-card {
    margin-bottom: 20px;
    transition: all 0.3s;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.parking-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.map-link {
    cursor: pointer;
    color: #007bff;
    text-decoration: none;
}

.map-link:hover {
    text-decoration: underline;
}

.payment-image {
    max-width: 100px;
    max-height: 100px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: transform 0.3s;
}

.payment-image:hover {
    transform: scale(1.05);
}

footer {
    background-color: #343a40 !important;
}

footer a {
    color: #17a2b8;
}

footer a:hover {
    color: #138496;
    text-decoration: none;
}