#gui-overlay {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

#overlay-text {
    position: fixed;
    top: 0.45rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 192, 203, 0.6);
    padding: 0.05rem 1rem;
    border-radius: 0.55rem;
    z-index: 1000;
    pointer-events: none;
    font-size: 0.75rem;
    font-family: monospace;
    font-weight: 500;
    color: black;
    text-align: center;
    max-width: 90%;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

#mute-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.4rem;
    background: transparent;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    pointer-events: auto;
}

#mute-button img {
    width: 36px;
    height: 36px;
    pointer-events: all;
}