/* statusbar.css */

#icosmo-matrix-synth-container .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 */
}

/* Styles for the 'Start Audio' overlay */
#icosmo-matrix-synth-container #start-audio-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Extremely high z-index to be on top of everything */
}

#icosmo-matrix-synth-container #start-audio-button {
    padding: 15px 30px;
    font-size: 1.5em;
    font-weight: bold;
    color: #111;
    background-color: #f0f0f0;
    border: 2px solid #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, transform 0.1s;
}

#icosmo-matrix-synth-container #start-audio-button:hover {
    background-color: #fff;
    color: #000;
}

#icosmo-matrix-synth-container #start-audio-button:active {
    transform: scale(0.95);
}
