        #reloj-contenedor {
            font-family: 'Arial', sans-serif; /* monospace */
            padding: 5px;
            text-align: center;
            justify-content: center;
            align-items: center;
            border: 2px solid #013220;
            background-color: #A1A598;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            width: 250px; /* Ancho ajustado para incluir "GMT" */
        }

        #reloj-hora {
            display: block; /* Primera fila (Hora) */
            font-size: 30px; /* Tamaño grande */
            font-weight: bold;
            color: #212121;
            margin-bottom: 5px; /* Espacio entre filas */
        }

        #reloj-fecha {
            display: block; /* Segunda fila (Fecha) */
            font-size: 14px; /* Tamaño más pequeño */
            color: #013220;
        }