/* Direct fix for footer alignment issue */

/* Laptop/Desktop view - left/right alignment */
@media screen and (min-width: 1025px) {
    .footer-bottom {
        display: flex !important;
        flex-flow: row nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding-top: 25px !important;
        margin-top: 25px !important;
        border-top: 1px solid #ddd !important;
        text-align: left !important;
    }

    .footer-bottom p:first-child {
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
    }

    .footer-bottom .footer-designer {
        margin: 0 !important;
        margin-left: auto !important;
        text-align: right !important;
    }
}

/* Mobile/Tablet view - stacked/centered */
@media screen and (max-width: 1024px) {
    .footer-bottom {
        display: block !important;
        text-align: center !important;
        padding-top: 20px !important;
        margin-top: 20px !important;
        border-top: 1px solid #ddd !important;
    }

    .footer-bottom p,
    .footer-bottom .footer-designer {
        display: block !important;
        width: 100% !important;
        margin: 8px auto !important;
        text-align: center !important;
    }
}

/* Add this media query for mobile stacking */
@media screen and (max-width: 768px) {
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .footer-bottom p, 
    .footer-bottom .footer-designer {
        text-align: center !important;
        margin: 5px 0 !important;
    }
}
