/* Layout specific styles (Header, Footer, Sidebar, etc.) */

/* Fixed Logo - previously in home.blade.php but structurally part of layout/header behavior */
.fixed-logo {
    position: fixed;
    top: 100px;
    right: 50px;
    z-index: 1000;
}

.fixed-logo img {
    width: 250px;
    height: auto;
}

@media only screen and (max-width: 600px) {
    .fixed-logo {
        top: 75px;
        right: 0px;
        z-index: 1000;
    }
    .fixed-logo img {
        width: 150px;
    }
}
