/*
 Theme Name:   Divarplus Child - Listing Styles
 Description:  Custom CSS for listing sections in Divarplus Child Theme.
*/

/* Add your custom CSS for listing sections below */

.listing-container {
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.listing-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ccc;
}

.listing-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.listing-item-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 5px;
}

.listing-item-details h3 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    color: #333;
}

.listing-item-details p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}

/* مثال برای دکمه‌ها */
.listing-item-details .button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 3px;
    margin-top: 10px;
    font-size: 0.9em;
}

.listing-item-details .button:hover {
    background-color: #0056b3;
}
