/* Custom CSS for Logo Size - smartsocial.it */
/* Override Tailwind .h-9 class only for logo */
.h-9 {
    height: 7.25rem !important;
}

/* Se serve anche per mobile, aggiungi media query */
@media (max-width: 768px) {
    .h-9 {
        height: 5rem !important; /* Logo più piccolo su mobile */
    }
}
