/* statusbar.css */

.status-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4px 8px; /* Padding inside the status bar */
    background-color: #1e1e1e; /* Dark background */
    border-top: 1px solid #4f4f4f; /* Separator line */
    font-size: 0.75em; /* Smaller font size */
    min-height: 1.1em; /* Ensure it has some height even if empty, relative to its font size */
    line-height: 1.1em; /* Match min-height for vertical centering if text is single line */
    color: #e0e0e0; /* Light text color */
    text-align: center;
    box-sizing: border-box;
    z-index: 1000; /* Above most content but below modals/popups if any */
    user-select: none; /* Prevent text selection */
}