body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

header {
    background-color: #007bff;
    color: #fff;
    padding: 20px;
    text-align: center;
}

#listings {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
    margin-top: 80px;
}

.listing {
    max-width: 320px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.listing:hover {
    transform: translateY(-5px);
}

.listing h3 {
    margin: 15px 0;
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
}

.listing p {
    margin: 0;
}

.listing .info {
    padding: 0 20px 20px;
    flex: 1; /* Make the info section fill the remaining height of the advertisement */
    display:flex;
    flex-direction: column;
    justify-content: space-between; /* Vertically align the content */
}

.listing .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #007bff;
}

.listing .size {
    font-size: 1.1rem;
}

.listing .renovated {
    font-size: 1rem;
    color: #28a745;
}

.listing .extra-info {
    font-size: 0.9rem;
    font-weight: bold;
    color: #6c757d;
}

.listing img {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: transform 0.3s ease;
}

.listing:hover img {
    transform: scale(1.05);
}

.listing-link {
    display: inline-block;
    text-decoration: none;
}

footer {
    background-color: #007bff;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Style the buttons */
#view-ads-button, #submit-ad-button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 10px;
    position: absolute;
    top: 20px;
    left: 20px;
}