
        /* Modal styling */
        .modalMando {
            display: none;
            position: fixed;
            z-index: 30;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            display: none;
            justify-content: center;
            align-items: center;
        }

        .modalMando-content {
            width: 300px;
            background-color: #fefefe;
            padding: 20px;
            border: 1px solid #888;
            border-radius: 10px;
            text-align: center;
            position: relative;
        }

        .closeMando {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            top: 10px;
            right: 20px;
        }

        .remote-control {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            background-color: #333;
            border-radius: 20px;
            margin: 0 auto;
        }

        .rowMando {
            display: flex;
            justify-content: center;
            margin: 5px 0;
        }

        .button {
            width: 60px;
            height: 40px;
            margin: 5px;
            background-color: #666;
            border-radius: 10px;
            border: 2px solid #222;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 16px;
            cursor: pointer;
        }

        .button-wide {
            width: 120px;
        }

        .button.red {
            background-color: red;
        }

        .button.green {
            background-color: green;
        }

        .button.blue {
            background-color: blue;
        }

        .button.orange {
            background-color: orange;
        }

        .inputMando-row {
            display: flex;
            align-items: center;
        }

        input[type="number"] {
            width: 60px;
            height: 37px;
            margin: 5px;
            text-align: center;
            border-radius: 10px;
            border: 2px solid #222;
        }
        
                /* Superpuesto mensaje */
        .overlay-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 20px;
            border-radius: 10px;
            display: none;
            z-index: 2;
            font-size: 18px;
        }
