/* Custom Font Setup using Inter (Tailwind default) */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}
/* Style for the main container to prevent scrolling under fixed header */
main {
    padding-top: 4rem; /* Match header height */
}
div#headerLogoWrap{
    height: 100%;
}

img#headerLogo{
    height: 100%;
}

/* Custom styles for the message box */
#message_wrapper {
    transition: all 0.3s ease-in-out;
}

#status_box {
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}