/*
 Theme Name:   My Listing Child
 Theme URI:    http://mylisting.27collective.net/my-city/
 Description:  MyListing Child Theme
 Author:       27collective
 Author URI:   https://27collective.net/
 Template:     my-listing
 Version:      1.1
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         one-column, two-columns, three-columns, left-sidebar, right-sidebar, grid-layout, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
 Text Domain:  my-listing-child
*/

#dashboardVente .cts-carousel.no-list-style{
    display: flex; 
    justify-content: center;
    align-items: center;
}

.custom-footer {
    background-color: #f5f5f5;
    padding: 60px 0;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.footer-logo img {
    max-width: 130px;
    height: auto;
}

.footer-tagline {
    margin: 20px 0;
    color: #666;
}

.footer-contact a {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    margin-top: 15px;
}

.footer-contact i {
    margin-right: 10px;
    color: #666;
}

.footer-column h3 {
    color: #ee8e48;
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-nav ul,
.footer-cities {
    list-style: none;
    padding: 0;
}

.footer-nav ul li,
.footer-cities li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-cities li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav ul li a:hover,
.footer-cities li a:hover {
    color: #333;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #666;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #333;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-column {
        text-align: center;
        margin: 20px 0;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .social-icons {
        justify-content: center;
    }
}