body {
    padding-top: 20px;
    padding-bottom: 40px;
}

.ads-card, .ad-card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.ad-card {
    transition: transform 0.2s;
}

.ad-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.ad-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.ad-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ad-price {
    font-size: 1.5em;
    font-weight: bold;
    color: #198754;
}

.ad-location {
    color: #6c757d;
    font-size: 0.9rem;
}

.ad-source {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
}

.ad-source.yad2 {
    background-color: #0d6efd;
    color: white;
}

.ad-source.subito {
    background-color: #198754;
    color: white;
}

.ad-date {
    font-size: 0.9em;
    color: #6c757d;
}

.ad-actions {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #dee2e6;
}

.filter-section, .filters {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.pagination {
    margin-top: 20px;
    justify-content: center;
} 