/* ==========================================
   RODENT RAMPAGE — styles (rr- prefix)
   Retro Win95 look, matches Sokoban conventions.
   ========================================== */

.window-rodent { width: auto; }

.rr-body { padding: 6px; }

.rr-status {
    font-size: 11px;
    padding: 3px 6px;
    border: 1px inset #808080;
    margin-bottom: 6px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 368px;
    box-sizing: border-box;
}

.rr-frame {
    position: relative;
    border: 2px inset #808080;
    background: #000;
    line-height: 0;
    width: 368px;
}

#rr-canvas {
    display: block;
    image-rendering: pixelated;
}

.rr-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    padding: 12px;
    text-shadow: 1px 1px 0 #000;
}

.rr-overlay-small {
    font-size: 11px;
    font-weight: normal;
}

.rr-help {
    font-size: 10px;
    color: #404040;
    margin-top: 4px;
    max-width: 368px;
    line-height: 1.4;
}

/* 16px mouse icon for the title bar and Start menu (pure CSS,
   same technique as the other icon-*-sm classes). */
.icon-rodent-sm {
    width: 16px; height: 16px; position: relative; display: inline-block;
}
.icon-rodent-sm::before {
    /* gray mouse body */
    content: '';
    position: absolute; left: 1px; top: 6px;
    width: 11px; height: 7px;
    background: #a8a8a8;
    border: 1px solid #000;
    border-radius: 6px 6px 3px 3px;
}
.icon-rodent-sm::after {
    /* pink ears + tail dot */
    content: '';
    position: absolute; left: 2px; top: 2px;
    width: 4px; height: 4px;
    background: #f0a0b8;
    border-radius: 50%;
    box-shadow: 6px 0 0 #f0a0b8, 12px 9px 0 -1px #f0a0b8;
}
