/* app/webroot/css/custom.css */



.navbar {
    background-color: #334956 !important; /* Your custom navbar color */
}

/* Make the body full height */
html, body {
    height: 100%;
    margin: 0;
}

/* Layout structure: main pushes footer down */
body {
    display: flex;
    flex-direction: column;
}

/* Make the main container take available space */
main.container {
    flex: 1 0 auto;
}

body.app-footer-active main.container {
    padding-bottom: 70px; /* Or whatever height your .app-footer has */
}


/* Footer stays at the bottom */
footer {
    background-color: #f8f9fa; /* Light gray */
    color: #333; /* Dark text */
    flex-shrink: 0;
}

/* Breadcrumb styling */
.breadcrumb {
    background-color: #f8f9fa;
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    padding: 0 0.5rem;
    color: #6c757d;
}

.breadcrumb a {
    color: #343a40;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #000;
    text-decoration: underline;
}

.text-primary {
    color: #334956 !important;
}
