Search Dashboard
/* FOOTER CONTAINER */
.dashboard-footer {
height: 40px;
background-color: #1e293b; /* Slate 800 */
border-top: 1px solid #334155;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
box-sizing: border-box;
color: #94a3b8;
font-size: 11px;
z-index: 60;
flex-shrink: 0;
}
.footer-features {
display: flex;
gap: 15px;
}
.footer-features span strong {
color: #cbd5e1;
}
/* STRUCTURAL FIX: Force the body to stack the dashboard and footer vertically */
body {
display: flex;
flex-direction: column;
}
Comments